DROP TABLE IF EXISTS 7ja_actionscheduler_actions;

CREATE TABLE `7ja_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_520_ci,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `attempts` int(11) NOT NULL DEFAULT '0',
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_actionscheduler_actions VALUES("5","action_scheduler/migration_hook","pending","2022-11-11 00:18:57","2022-11-11 00:18:57","[]","O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1668125937;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1668125937;}","1","0","0000-00-00 00:00:00","0000-00-00 00:00:00","0","");



DROP TABLE IF EXISTS 7ja_actionscheduler_claims;

CREATE TABLE `7ja_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_actionscheduler_groups;

CREATE TABLE `7ja_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_actionscheduler_groups VALUES("1","action-scheduler-migration");



DROP TABLE IF EXISTS 7ja_actionscheduler_logs;

CREATE TABLE `7ja_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_actionscheduler_logs VALUES("1","5","action created","2022-11-11 00:17:57","2022-11-11 00:17:57");



DROP TABLE IF EXISTS 7ja_ce4wp_contacts;

CREATE TABLE `7ja_ce4wp_contacts` (
  `contact_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `first_name` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `last_name` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `telephone` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `consent` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`contact_id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_commentmeta;

CREATE TABLE `7ja_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_comments;

CREATE TABLE `7ja_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_e_events;

CREATE TABLE `7ja_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_e_notes;

CREATE TABLE `7ja_e_notes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `route_url` text COLLATE utf8mb4_unicode_520_ci COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `route_post_id` bigint(20) unsigned DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `element_id` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `author_id` bigint(20) unsigned DEFAULT NULL,
  `author_display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `position` text COLLATE utf8mb4_unicode_520_ci COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext COLLATE utf8mb4_unicode_520_ci,
  `is_resolved` tinyint(1) NOT NULL DEFAULT '0',
  `is_public` tinyint(1) NOT NULL DEFAULT '1',
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `route_url_index` (`route_url`(191)),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `parent_id_index` (`parent_id`),
  KEY `author_id_index` (`author_id`),
  KEY `status_index` (`status`),
  KEY `is_resolved_index` (`is_resolved`),
  KEY `is_public_index` (`is_public`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `last_activity_at_index` (`last_activity_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_e_notes_users_relations;

CREATE TABLE `7ja_e_notes_users_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`),
  KEY `note_id_index` (`note_id`),
  KEY `user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_e_submissions;

CREATE TABLE `7ja_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `hash_id` varchar(60) COLLATE utf8mb4_unicode_520_ci 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) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `referer_title` varchar(300) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `element_id` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `form_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `actions_count` int(11) DEFAULT '0',
  `actions_succeeded_count` int(11) DEFAULT '0',
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `meta` text COLLATE utf8mb4_unicode_520_ci,
  `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;




DROP TABLE IF EXISTS 7ja_e_submissions_actions_log;

CREATE TABLE `7ja_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL,
  `action_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_label` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log` text COLLATE utf8mb4_unicode_520_ci,
  `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;




DROP TABLE IF EXISTS 7ja_e_submissions_values;

CREATE TABLE `7ja_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `key` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_jetpack_sync_queue;

CREATE TABLE `7ja_jetpack_sync_queue` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `queue_id` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `event_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `event_payload` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`ID`),
  KEY `event_id` (`event_id`),
  KEY `queue_id` (`queue_id`),
  KEY `queue_id_event_id` (`queue_id`,`event_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB AUTO_INCREMENT=745 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_links;

CREATE TABLE `7ja_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_nfd_data_event_queue;

CREATE TABLE `7ja_nfd_data_event_queue` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `event` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attempts` tinyint(3) NOT NULL DEFAULT '0',
  `reserved_at` datetime DEFAULT NULL,
  `available_at` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_options;

CREATE TABLE `7ja_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=105410 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_options VALUES("1","siteurl","https://latitude39creative.com","yes");
INSERT INTO 7ja_options VALUES("2","home","https://latitude39creative.com","yes");
INSERT INTO 7ja_options VALUES("3","blogname","Latitude 39 Creative","yes");
INSERT INTO 7ja_options VALUES("4","blogdescription","Creation Starts At Latitude 39","yes");
INSERT INTO 7ja_options VALUES("5","users_can_register","0","yes");
INSERT INTO 7ja_options VALUES("6","admin_email","latitude39creative@gmail.com","yes");
INSERT INTO 7ja_options VALUES("7","start_of_week","1","yes");
INSERT INTO 7ja_options VALUES("8","use_balanceTags","0","yes");
INSERT INTO 7ja_options VALUES("9","use_smilies","1","yes");
INSERT INTO 7ja_options VALUES("10","require_name_email","1","yes");
INSERT INTO 7ja_options VALUES("11","comments_notify","1","yes");
INSERT INTO 7ja_options VALUES("12","posts_per_rss","10","yes");
INSERT INTO 7ja_options VALUES("13","rss_use_excerpt","0","yes");
INSERT INTO 7ja_options VALUES("14","mailserver_url","mail.example.com","yes");
INSERT INTO 7ja_options VALUES("15","mailserver_login","login@example.com","yes");
INSERT INTO 7ja_options VALUES("16","mailserver_pass","password","yes");
INSERT INTO 7ja_options VALUES("17","mailserver_port","110","yes");
INSERT INTO 7ja_options VALUES("18","default_category","1","yes");
INSERT INTO 7ja_options VALUES("19","default_comment_status","open","yes");
INSERT INTO 7ja_options VALUES("20","default_ping_status","open","yes");
INSERT INTO 7ja_options VALUES("21","default_pingback_flag","1","yes");
INSERT INTO 7ja_options VALUES("22","posts_per_page","10","yes");
INSERT INTO 7ja_options VALUES("23","date_format","F j, Y","yes");
INSERT INTO 7ja_options VALUES("24","time_format","g:i a","yes");
INSERT INTO 7ja_options VALUES("25","links_updated_date_format","F j, Y g:i a","yes");
INSERT INTO 7ja_options VALUES("26","comment_moderation","0","yes");
INSERT INTO 7ja_options VALUES("27","moderation_notify","1","yes");
INSERT INTO 7ja_options VALUES("28","permalink_structure","/%postname%/","yes");
INSERT INTO 7ja_options VALUES("29","rewrite_rules","a:122:{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:45:\"elementskit-content/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"elementskit-content/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"elementskit-content/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"elementskit-content/(.+?)/embed/?$\";s:52:\"index.php?elementskit_content=$matches[1]&embed=true\";s:38:\"elementskit-content/(.+?)/trackback/?$\";s:46:\"index.php?elementskit_content=$matches[1]&tb=1\";s:46:\"elementskit-content/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&paged=$matches[2]\";s:53:\"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&cpage=$matches[2]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$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: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:40:\"index.php?&page_id=169&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\";}","yes");
INSERT INTO 7ja_options VALUES("30","hack_file","0","yes");
INSERT INTO 7ja_options VALUES("31","blog_charset","UTF-8","yes");
INSERT INTO 7ja_options VALUES("32","moderation_keys","","no");
INSERT INTO 7ja_options VALUES("33","active_plugins","a:12:{i:0;s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";i:3;s:31:\"elementor-pro/elementor-pro.php\";i:4;s:23:\"elementor/elementor.php\";i:5;s:37:\"elementskit-lite/elementskit-lite.php\";i:6;s:35:\"envato-elements/envato-elements.php\";i:7;s:19:\"jetpack/jetpack.php\";i:8;s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";i:9;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:10;s:55:\"premium-addons-pro/premium-addons-pro-for-elementor.php\";i:11;s:24:\"wordpress-seo/wp-seo.php\";}","yes");
INSERT INTO 7ja_options VALUES("34","category_base","","yes");
INSERT INTO 7ja_options VALUES("35","ping_sites","http://rpc.pingomatic.com/","yes");
INSERT INTO 7ja_options VALUES("36","comment_max_links","2","yes");
INSERT INTO 7ja_options VALUES("37","gmt_offset","0","yes");
INSERT INTO 7ja_options VALUES("38","default_email_category","1","yes");
INSERT INTO 7ja_options VALUES("39","recently_edited","","no");
INSERT INTO 7ja_options VALUES("40","template","hello-elementor","yes");
INSERT INTO 7ja_options VALUES("41","stylesheet","hello-elementor","yes");
INSERT INTO 7ja_options VALUES("42","comment_registration","0","yes");
INSERT INTO 7ja_options VALUES("43","html_type","text/html","yes");
INSERT INTO 7ja_options VALUES("44","use_trackback","0","yes");
INSERT INTO 7ja_options VALUES("45","default_role","subscriber","yes");
INSERT INTO 7ja_options VALUES("46","db_version","57155","yes");
INSERT INTO 7ja_options VALUES("47","uploads_use_yearmonth_folders","1","yes");
INSERT INTO 7ja_options VALUES("48","upload_path","","yes");
INSERT INTO 7ja_options VALUES("49","blog_public","1","yes");
INSERT INTO 7ja_options VALUES("50","default_link_category","2","yes");
INSERT INTO 7ja_options VALUES("51","show_on_front","page","yes");
INSERT INTO 7ja_options VALUES("52","tag_base","","yes");
INSERT INTO 7ja_options VALUES("53","show_avatars","1","yes");
INSERT INTO 7ja_options VALUES("54","avatar_rating","G","yes");
INSERT INTO 7ja_options VALUES("55","upload_url_path","","yes");
INSERT INTO 7ja_options VALUES("56","thumbnail_size_w","150","yes");
INSERT INTO 7ja_options VALUES("57","thumbnail_size_h","150","yes");
INSERT INTO 7ja_options VALUES("58","thumbnail_crop","1","yes");
INSERT INTO 7ja_options VALUES("59","medium_size_w","300","yes");
INSERT INTO 7ja_options VALUES("60","medium_size_h","300","yes");
INSERT INTO 7ja_options VALUES("61","avatar_default","mystery","yes");
INSERT INTO 7ja_options VALUES("62","large_size_w","1024","yes");
INSERT INTO 7ja_options VALUES("63","large_size_h","1024","yes");
INSERT INTO 7ja_options VALUES("64","image_default_link_type","none","yes");
INSERT INTO 7ja_options VALUES("65","image_default_size","","yes");
INSERT INTO 7ja_options VALUES("66","image_default_align","","yes");
INSERT INTO 7ja_options VALUES("67","close_comments_for_old_posts","1","yes");
INSERT INTO 7ja_options VALUES("68","close_comments_days_old","28","yes");
INSERT INTO 7ja_options VALUES("69","thread_comments","1","yes");
INSERT INTO 7ja_options VALUES("70","thread_comments_depth","5","yes");
INSERT INTO 7ja_options VALUES("71","page_comments","0","yes");
INSERT INTO 7ja_options VALUES("72","comments_per_page","20","yes");
INSERT INTO 7ja_options VALUES("73","default_comments_page","newest","yes");
INSERT INTO 7ja_options VALUES("74","comment_order","asc","yes");
INSERT INTO 7ja_options VALUES("75","sticky_posts","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("76","widget_categories","a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("77","widget_text","a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("78","widget_rss","a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("79","uninstall_plugins","a:2:{s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}","no");
INSERT INTO 7ja_options VALUES("80","timezone_string","","yes");
INSERT INTO 7ja_options VALUES("81","page_for_posts","315","yes");
INSERT INTO 7ja_options VALUES("82","page_on_front","169","yes");
INSERT INTO 7ja_options VALUES("83","default_post_format","0","yes");
INSERT INTO 7ja_options VALUES("84","link_manager_enabled","0","yes");
INSERT INTO 7ja_options VALUES("85","finished_splitting_shared_terms","1","yes");
INSERT INTO 7ja_options VALUES("86","site_icon","961","yes");
INSERT INTO 7ja_options VALUES("87","medium_large_size_w","768","yes");
INSERT INTO 7ja_options VALUES("88","medium_large_size_h","0","yes");
INSERT INTO 7ja_options VALUES("89","wp_page_for_privacy_policy","3","yes");
INSERT INTO 7ja_options VALUES("90","show_comments_cookies_opt_in","1","yes");
INSERT INTO 7ja_options VALUES("91","admin_email_lifespan","1683677844","yes");
INSERT INTO 7ja_options VALUES("92","disallowed_keys","","no");
INSERT INTO 7ja_options VALUES("93","comment_previously_approved","1","yes");
INSERT INTO 7ja_options VALUES("94","auto_plugin_theme_update_emails","a:0:{}","no");
INSERT INTO 7ja_options VALUES("95","auto_update_core_dev","enabled","yes");
INSERT INTO 7ja_options VALUES("96","auto_update_core_minor","enabled","yes");
INSERT INTO 7ja_options VALUES("97","auto_update_core_major","enabled","yes");
INSERT INTO 7ja_options VALUES("98","wp_force_deactivated_plugins","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("99","initial_db_version","53496","yes");
INSERT INTO 7ja_options VALUES("100","7ja_user_roles","a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:69:{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:20:\"wpseo_manage_options\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}","yes");
INSERT INTO 7ja_options VALUES("101","fresh_site","0","yes");
INSERT INTO 7ja_options VALUES("102","user_count","2","no");
INSERT INTO 7ja_options VALUES("103","widget_block","a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("104","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;}","yes");
INSERT INTO 7ja_options VALUES("105","allow_major_auto_core_updates","true","yes");
INSERT INTO 7ja_options VALUES("106","allow_minor_auto_core_updates","true","yes");
INSERT INTO 7ja_options VALUES("107","auto_update_plugin","true","yes");
INSERT INTO 7ja_options VALUES("108","auto_update_theme","true","yes");
INSERT INTO 7ja_options VALUES("109","auto_update_translation","true","yes");
INSERT INTO 7ja_options VALUES("110","mm_brand","BlueHost","yes");
INSERT INTO 7ja_options VALUES("111","mm_coming_soon","false","yes");
INSERT INTO 7ja_options VALUES("112","mm_host","BlueHost","yes");
INSERT INTO 7ja_options VALUES("113","bluehost_plugin_compatibility_results","a:2:{s:6:\"status\";s:8:\"standard\";s:9:\"timestamp\";s:19:\"2022-11-11 00:17:27\";}","yes");
INSERT INTO 7ja_options VALUES("114","CE4WP_REFERRED_BY","a:3:{s:8:\"campaign\";s:17:\"Bluehost_Standard\";s:6:\"plugin\";s:8:\"Bluehost\";s:6:\"source\";s:12:\"preinstalled\";}","yes");
INSERT INTO 7ja_options VALUES("115","ce4wp_activated","1","yes");
INSERT INTO 7ja_options VALUES("116","ce4wp_install_date","2022-11-11 0:17:27","yes");
INSERT INTO 7ja_options VALUES("119","jetpack_activated","1","yes");
INSERT INTO 7ja_options VALUES("120","jetpack_activation_source","a:2:{i:0;s:7:\"unknown\";i:1;N;}","yes");
INSERT INTO 7ja_options VALUES("121","jetpack_sync_settings_disable","0","yes");
INSERT INTO 7ja_options VALUES("122","jetpack_options","a:13:{s:7:\"version\";s:17:\"13.3.1:1712796291\";s:11:\"old_version\";s:15:\"13.3:1712190144\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:-1;s:2:\"id\";i:193533681;s:6:\"public\";i:1;s:14:\"last_heartbeat\";i:1714437440;s:30:\"recommendations_banner_enabled\";b:1;s:27:\"recommendations_conditional\";a:4:{i:0;s:11:\"backup-plan\";i:1;s:7:\"protect\";i:2;s:9:\"publicize\";i:3;s:5:\"boost\";}s:20:\"recommendations_data\";a:7:{s:18:\"site-type-personal\";b:0;s:16:\"site-type-agency\";b:1;s:15:\"site-type-store\";b:0;s:16:\"onboardingViewed\";a:0:{}s:23:\"selectedRecommendations\";a:0:{}s:22:\"skippedRecommendations\";a:0:{}s:21:\"viewedRecommendations\";a:2:{i:0;s:11:\"backup-plan\";i:1;s:7:\"summary\";}}s:20:\"recommendations_step\";s:7:\"summary\";s:16:\"first_admin_view\";b:1;s:26:\"identity_crisis_url_secret\";a:2:{s:6:\"secret\";s:12:\"JrltBV64cYzO\";s:10:\"expires_at\";i:1709824283;}}","yes");
INSERT INTO 7ja_options VALUES("123","wpseo","a:110:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";s:5:\"false\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:23:\"home_url_option_changed\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"22.6\";s:16:\"previous_version\";s:4:\"22.5\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";s:10:\"1668125865\";s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:6:{s:12:\"access_token\";s:40:\"tHmbEQY1u8o9n0BCmRJk3uI8q7dgvvykbXgmDXLr\";s:13:\"refresh_token\";s:40:\"YDIUK2dNXRxiyCLGumj40J8on2C2yTXDZGNdgU43\";s:7:\"expires\";i:1700524673;s:11:\"has_expired\";b:0;s:10:\"created_at\";i:1699919873;s:11:\"error_count\";i:0;}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:30:\"https://latitude39creative.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:3:{s:22:\"elementor_library_type\";s:22:\"elementor_library_type\";s:26:\"elementor_library_category\";s:26:\"elementor_library_category\";s:19:\"elementor_font_type\";s:19:\"elementor_font_type\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:3:{i:0;s:18:\"siteRepresentation\";i:1;s:14:\"socialProfiles\";i:2;s:19:\"personalPreferences\";}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:6:{s:12:\"access_token\";s:1325:\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjFCMDczMjRFMEMxMzIyOEQ1NzBENUVFRjg1MDcxMzU4Mzg0NkRFRDkiLCJ0eXAiOiJhdCtqd3QiLCJ4NXQiOiJHd2N5VGd3VElvMVhEVjd2aFFjVFdEaEczdGsifQ.eyJuYmYiOjE3MTQ1MDQxNTEsImV4cCI6MTcxNDUwNzc1MSwiaXNzIjoiaHR0cDovL2F1dGgud2luY2hlci5jb20iLCJhdWQiOiJhcGkiLCJjbGllbnRfaWQiOiJ5b2FzdCIsInN1YiI6IjQ2NjMzMiIsImF1dGhfdGltZSI6MTY5OTkxODI2OSwiaWRwIjoiZ29vZ2xlIiwidXNlcklkIjoiNDY2MzMyIiwiYWNjb3VudElkIjoiNDU3NDk5IiwiaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS93cy8yMDA4LzA2L2lkZW50aXR5L2NsYWltcy9yb2xlIjoiY3VzdG9tZXIiLCJzY29wZSI6WyJwcm9maWxlIiwiYWNjb3VudCIsIndlYnNpdGVzOnJlYWQiLCJ3ZWJzaXRlczp3cml0ZSIsIm9mZmxpbmVfYWNjZXNzIl0sImFtciI6WyJleHRlcm5hbCJdfQ.fF2meAH-jBTuoufCJPjS0eKe2vh1L-ezdV3mXnhThgWnCHGrSd5bfV2_Vw2xrGoM2xNOStbV_JPJJIg6rViIJNom0XapCL3ayxJk2j5VQ8Hrge_Lcgmv7fVApNQa2rbdWSawFUYdX80dHiHKLc4c9txHANjRjFYffLPLSIjXMu9LypSXpgFFaSGSx2V-KieFqBs3Mxi8LFunuY_ZubKPte4lfJqMzivc3YYqe9VXv08ZO46Jp1kfHcaYKKE-hKi3_oEGkFTvlektYGo0oKQguO5BS-FEMsRa2EK7aTbsoILQaOxupw14CRwIrI6wsxuaZCHC3EsT_7HL_H6h8ch4DYCnAdRQqQyafP6yLpIsu-1ew15TnCGYwUQIDd_1cgEkVx_cTnztPF6HdjRTp5rwJnOrgy-R8APjKtqaCNxW6xUu1GrGwahl8W0_J75daiHoK4dxSAPWJBcrD4cOS1BoxsMZcSDsXUHU_lr5JeVtNzFMMBB3tzum-J8rwVhRx7D-vi-G7z3ZEQGqg4Z1CczKNpD9UcuB_VYJ_OhRTrtuTNLfrwCDrNcjuijzJkBG2JnzfRS0ZLKJPFEfetFDs0b8FufxRQ0Hsioye4JrpMnBFJ56uPCtMeklH79_jrmXy3EUJC9pLBSLNIZnq_nOrgGdTRlxASPbGdUE58_BM4mOuRs\";s:13:\"refresh_token\";s:43:\"Hx0AZ6dUYLQyfxvGhk-fD6OCFVljQcMwAFZJ5RDpqCg\";s:7:\"expires\";i:1714507751;s:11:\"has_expired\";b:0;s:10:\"created_at\";i:1714504151;s:11:\"error_count\";i:0;}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:6:\"729855\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";b:0;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:14:\"e-landing-page\";i:3;s:19:\"elementskit_content\";i:4;s:20:\"elementskit_template\";i:5;s:18:\"elementskit_widget\";}s:28:\"last_known_public_taxonomies\";a:3:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1714429463;s:35:\"wpseo_total_unindexed_general_items\";i:1714429463;s:31:\"wpseo_unindexed_post_link_count\";i:1714429463;s:31:\"wpseo_unindexed_term_link_count\";i:1714429463;s:27:\"wpseo_total_unindexed_posts\";i:1699917628;s:27:\"wpseo_total_unindexed_terms\";i:1699917628;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}","yes");
INSERT INTO 7ja_options VALUES("124","yoast_migrations_free","a:1:{s:7:\"version\";s:4:\"22.6\";}","yes");
INSERT INTO 7ja_options VALUES("125","cron","a:18:{i:1714523911;a:1:{s:18:\"nfd_data_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:8:\"minutely\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1714524044;a:2:{s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1714525609;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1714526275;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1714545358;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1714545359;a:1:{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:1714546998;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1714565876;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1714567187;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:1714576819;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1714576975;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:1714577035;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:1714581988;a:1:{s:18:\"wpseo_cleanup_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1714609065;a:1:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1714609075;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:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1714781876;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:1714781884;a:1:{s:13:\"nfd_data_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}","yes");
INSERT INTO 7ja_options VALUES("126","wpseo_titles","a:172:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:97:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/02/Latitude-Logo-02-1.jpg\";s:12:\"company_name\";s:20:\"Latitude 39 Creative\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";i:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:20:\"title-e-landing-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-e-landing-page\";s:0:\"\";s:22:\"noindex-e-landing-page\";b:0;s:33:\"display-metabox-pt-e-landing-page\";b:1;s:33:\"post_types-e-landing-page-maintax\";i:0;s:31:\"schema-page-type-e-landing-page\";s:7:\"WebPage\";s:34:\"schema-article-type-e-landing-page\";s:4:\"None\";s:27:\"social-title-e-landing-page\";s:9:\"%%title%%\";s:33:\"social-description-e-landing-page\";s:0:\"\";s:31:\"social-image-url-e-landing-page\";s:0:\"\";s:30:\"social-image-id-e-landing-page\";i:0;s:23:\"title-elementor_library\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-elementor_library\";s:0:\"\";s:25:\"noindex-elementor_library\";b:0;s:36:\"display-metabox-pt-elementor_library\";b:1;s:36:\"post_types-elementor_library-maintax\";i:0;s:34:\"schema-page-type-elementor_library\";s:7:\"WebPage\";s:37:\"schema-article-type-elementor_library\";s:4:\"None\";s:30:\"social-title-elementor_library\";s:9:\"%%title%%\";s:36:\"social-description-elementor_library\";s:0:\"\";s:34:\"social-image-url-elementor_library\";s:0:\"\";s:33:\"social-image-id-elementor_library\";i:0;s:25:\"title-elementskit_content\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-elementskit_content\";s:0:\"\";s:27:\"noindex-elementskit_content\";b:0;s:38:\"display-metabox-pt-elementskit_content\";b:1;s:38:\"post_types-elementskit_content-maintax\";i:0;s:36:\"schema-page-type-elementskit_content\";s:7:\"WebPage\";s:39:\"schema-article-type-elementskit_content\";s:4:\"None\";s:32:\"social-title-elementskit_content\";s:9:\"%%title%%\";s:38:\"social-description-elementskit_content\";s:0:\"\";s:36:\"social-image-url-elementskit_content\";s:0:\"\";s:35:\"social-image-id-elementskit_content\";i:0;s:26:\"title-elementskit_template\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-elementskit_template\";s:0:\"\";s:28:\"noindex-elementskit_template\";b:0;s:39:\"display-metabox-pt-elementskit_template\";b:1;s:39:\"post_types-elementskit_template-maintax\";i:0;s:37:\"schema-page-type-elementskit_template\";s:7:\"WebPage\";s:40:\"schema-article-type-elementskit_template\";s:4:\"None\";s:33:\"social-title-elementskit_template\";s:9:\"%%title%%\";s:39:\"social-description-elementskit_template\";s:0:\"\";s:37:\"social-image-url-elementskit_template\";s:0:\"\";s:36:\"social-image-id-elementskit_template\";i:0;s:24:\"title-elementskit_widget\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-elementskit_widget\";s:0:\"\";s:26:\"noindex-elementskit_widget\";b:0;s:37:\"display-metabox-pt-elementskit_widget\";b:1;s:37:\"post_types-elementskit_widget-maintax\";i:0;s:35:\"schema-page-type-elementskit_widget\";s:7:\"WebPage\";s:38:\"schema-article-type-elementskit_widget\";s:4:\"None\";s:31:\"social-title-elementskit_widget\";s:9:\"%%title%%\";s:37:\"social-description-elementskit_widget\";s:0:\"\";s:35:\"social-image-url-elementskit_widget\";s:0:\"\";s:34:\"social-image-id-elementskit_widget\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:704;s:17:\"company_logo_meta\";a:10:{s:5:\"width\";i:499;s:6:\"height\";i:200;s:8:\"filesize\";i:34583;s:3:\"url\";s:97:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/02/Latitude-Logo-02-1.jpg\";s:4:\"path\";s:77:\"/home3/kaktuscr/public_html/wp-content/uploads/2023/02/Latitude-Logo-02-1.jpg\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:704;s:3:\"alt\";s:0:\"\";s:6:\"pixels\";i:99800;s:4:\"type\";s:10:\"image/jpeg\";}s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}","yes");
INSERT INTO 7ja_options VALUES("127","wpseo_social","a:20:{s:13:\"facebook_site\";s:44:\"https://www.facebook.com/latitude39creative/\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:1:{i:0;s:45:\"https://www.instagram.com/latitude39creative/\";}s:12:\"mastodon_url\";s:0:\"\";}","yes");
INSERT INTO 7ja_options VALUES("128","wpforms_constant_contact","show","yes");
INSERT INTO 7ja_options VALUES("129","wpforms_shareasale_id","1258907","yes");
INSERT INTO 7ja_options VALUES("130","action_scheduler_hybrid_store_demarkation","4","yes");
INSERT INTO 7ja_options VALUES("131","schema-ActionScheduler_StoreSchema","6.0.1668125875","yes");
INSERT INTO 7ja_options VALUES("132","schema-ActionScheduler_LoggerSchema","3.0.1668125875","yes");
INSERT INTO 7ja_options VALUES("133","wpforms_version","1.7.7.2","yes");
INSERT INTO 7ja_options VALUES("134","wpforms_version_lite","1.7.7.2","yes");
INSERT INTO 7ja_options VALUES("135","wpforms_activated","a:1:{s:4:\"lite\";i:1668125875;}","yes");
INSERT INTO 7ja_options VALUES("138","jetpack_available_modules","a:1:{s:6:\"13.3.1\";a:44:{s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}","yes");
INSERT INTO 7ja_options VALUES("139","jetpack_connection_active_plugins","a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}","yes");
INSERT INTO 7ja_options VALUES("142","widget_pages","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("143","widget_calendar","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("144","widget_archives","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("145","widget_media_audio","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("146","widget_media_image","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("147","widget_media_gallery","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("148","widget_media_video","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("149","widget_meta","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("150","widget_search","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("151","widget_recent-posts","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("152","widget_recent-comments","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("153","widget_tag_cloud","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("154","widget_nav_menu","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("155","widget_custom_html","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("156","widget_wpforms-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("163","nfd_data_connection_attempts","0","yes");
INSERT INTO 7ja_options VALUES("165","_transient_jetpack_autoloader_plugin_paths","a:1:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";}","yes");
INSERT INTO 7ja_options VALUES("166","newfold_active_modules","a:16:{s:4:\"data\";b:1;s:2:\"ai\";b:1;s:9:\"installer\";b:1;s:18:\"wp-module-patterns\";b:1;s:11:\"coming-soon\";b:1;s:11:\"performance\";b:1;s:8:\"facebook\";b:1;s:9:\"ecommerce\";b:1;s:10:\"global-ctb\";b:1;s:11:\"help-center\";b:1;s:11:\"marketplace\";b:1;s:13:\"notifications\";b:1;s:10:\"onboarding\";b:1;s:16:\"secure-passwords\";b:1;s:3:\"sso\";b:1;s:7:\"staging\";b:1;}","yes");
INSERT INTO 7ja_options VALUES("167","wpforms_versions_lite","a:7:{s:5:\"1.5.9\";i:0;s:7:\"1.6.7.2\";i:0;s:5:\"1.6.8\";i:0;s:5:\"1.7.5\";i:0;s:7:\"1.7.5.1\";i:0;s:5:\"1.7.7\";i:0;s:7:\"1.7.7.2\";i:1668125878;}","yes");
INSERT INTO 7ja_options VALUES("177","bluehost_access_token","latitude39creative.com/1696651798/60/ha:s,i:45c37e0d/658104ee6f003e9f35d3a8cc0e645067/sh.9.56960","yes");
INSERT INTO 7ja_options VALUES("178","bluehost_access_token_expiration","1696655398","yes");
INSERT INTO 7ja_options VALUES("179","bluehost_access_user","4289345","yes");
INSERT INTO 7ja_options VALUES("180","bh_cdata","a:9:{s:11:\"customer_id\";s:7:\"4289345\";s:9:\"affiliate\";s:33:\"house:spinoff:marcwaring:webpopup\";s:8:\"provider\";s:8:\"bluehost\";s:11:\"signup_date\";s:19:\"2019-07-11 18:59:10\";s:9:\"plan_term\";i:24;s:9:\"plan_type\";s:6:\"cpanel\";s:12:\"plan_subtype\";s:3:\"pro\";s:8:\"username\";s:8:\"kaktuscr\";s:4:\"meta\";a:0:{}}","yes");
INSERT INTO 7ja_options VALUES("181","bh_cdata_expiration","1699243799","yes");
INSERT INTO 7ja_options VALUES("182","auto_update_plugins","a:15:{i:0;s:19:\"akismet/akismet.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";i:3;s:23:\"elementor/elementor.php\";i:4;s:31:\"elementor-pro/elementor-pro.php\";i:5;s:37:\"elementskit-lite/elementskit-lite.php\";i:6;s:35:\"envato-elements/envato-elements.php\";i:7;s:9:\"hello.php\";i:8;s:19:\"jetpack/jetpack.php\";i:9;s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";i:10;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:11;s:55:\"premium-addons-pro/premium-addons-pro-for-elementor.php\";i:12;s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";i:13;s:24:\"wpforms-lite/wpforms.php\";i:14;s:24:\"wordpress-seo/wp-seo.php\";}","no");
INSERT INTO 7ja_options VALUES("186","auto_update_themes","a:6:{i:0;s:15:\"hello-elementor\";i:1;s:7:\"sinatra\";i:2;s:16:\"twentytwentyfour\";i:3;s:15:\"twentytwentyone\";i:4;s:17:\"twentytwentythree\";i:5;s:15:\"twentytwentytwo\";}","no");
INSERT INTO 7ja_options VALUES("199","jetpack_tos_agreed","1","yes");
INSERT INTO 7ja_options VALUES("200","jetpack_secrets","a:1:{s:19:\"jetpack_authorize_1\";a:3:{s:8:\"secret_1\";s:32:\"3DstuOmSrXlmdmCij0bjztrNRk9eL8g9\";s:8:\"secret_2\";s:32:\"QvlVlz37h6KsV5F9bqpDwmvydNiqkeIH\";s:3:\"exp\";i:1704929676;}}","no");
INSERT INTO 7ja_options VALUES("201","jetpack_sync_https_history_site_url","a:5:{i:0;s:4:\"http\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}","yes");
INSERT INTO 7ja_options VALUES("202","jetpack_sync_https_history_home_url","a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}","yes");
INSERT INTO 7ja_options VALUES("203","_transient_jetpack_assumed_site_creation_date","2022-11-11 00:17:24","yes");
INSERT INTO 7ja_options VALUES("206","theme_mods_twentytwentythree","a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1668184946;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\";}}}}","no");
INSERT INTO 7ja_options VALUES("209","jetpack_package_versions","a:7:{s:6:\"backup\";s:5:\"3.3.5\";s:10:\"connection\";s:5:\"2.7.0\";s:4:\"sync\";s:6:\"2.10.5\";s:15:\"identity-crisis\";s:6:\"0.18.1\";s:6:\"search\";s:6:\"0.43.8\";s:10:\"videopress\";s:7:\"0.23.12\";s:5:\"stats\";s:6:\"0.12.0\";}","yes");
INSERT INTO 7ja_options VALUES("210","jetpack_private_options","a:2:{s:10:\"blog_token\";s:65:\"C5*P(WX2H^B%*pD!64L&k4N4kTkRVGho.Cu73R3hOW9SZLsSCe5qpT7j#KmsrFH$t\";s:14:\"purchase_token\";s:12:\"rO7JaZHdi3p8\";}","yes");
INSERT INTO 7ja_options VALUES("211","jetpack_active_modules","a:8:{i:0;s:12:\"contact-form\";i:1;s:21:\"enhanced-distribution\";i:2;s:8:\"json-api\";i:3;s:5:\"stats\";i:4;s:21:\"woocommerce-analytics\";i:5;s:6:\"photon\";i:6;s:3:\"sso\";i:7;s:5:\"blaze\";}","yes");
INSERT INTO 7ja_options VALUES("212","jetpack_unique_registrations","1","yes");
INSERT INTO 7ja_options VALUES("213","jetpack_sync_settings_max_queue_size","5000","yes");
INSERT INTO 7ja_options VALUES("214","jetpack_sync_settings_max_queue_lag","7200","yes");
INSERT INTO 7ja_options VALUES("216","jetpack_sync_settings_dequeue_max_bytes","500000","yes");
INSERT INTO 7ja_options VALUES("217","jetpack_sync_settings_upload_max_bytes","600000","yes");
INSERT INTO 7ja_options VALUES("218","jetpack_sync_settings_upload_max_rows","500","yes");
INSERT INTO 7ja_options VALUES("219","jetpack_sync_settings_sync_wait_time","10","yes");
INSERT INTO 7ja_options VALUES("220","jetpack_sync_settings_sync_wait_threshold","10","yes");
INSERT INTO 7ja_options VALUES("221","jetpack_sync_settings_enqueue_wait_time","1","yes");
INSERT INTO 7ja_options VALUES("222","jetpack_sync_settings_queue_max_writes_sec","100","yes");
INSERT INTO 7ja_options VALUES("223","jetpack_sync_settings_post_types_blacklist","a:37:{i:0;s:10:\"_term_meta\";i:1;s:11:\"ai1ec_event\";i:2;s:6:\"ai_log\";i:3;s:17:\"amp_validated_url\";i:4;s:9:\"bwg_album\";i:5;s:11:\"bwg_gallery\";i:6;s:19:\"customize_changeset\";i:7;s:12:\"dn_wp_yt_log\";i:8;s:16:\"flamingo_contact\";i:9;s:16:\"flamingo_inbound\";i:10;s:17:\"flamingo_outbound\";i:11;s:4:\"http\";i:12;s:8:\"idx_page\";i:13;s:19:\"jetpack_inspect_log\";i:14;s:17:\"jetpack_migration\";i:15;s:14:\"jp_img_sitemap\";i:16;s:20:\"jp_img_sitemap_index\";i:17;s:10:\"jp_sitemap\";i:18;s:16:\"jp_sitemap_index\";i:19;s:17:\"jp_sitemap_master\";i:20;s:14:\"jp_vid_sitemap\";i:21;s:20:\"jp_vid_sitemap_index\";i:22;s:11:\"msm_sitemap\";i:23;s:17:\"postman_sent_mail\";i:24;s:10:\"rssap-feed\";i:25;s:15:\"rssmi_feed_item\";i:26;s:16:\"scheduled-action\";i:27;s:20:\"secupress_log_action\";i:28;s:17:\"sg_optimizer_jobs\";i:29;s:14:\"sl-insta-media\";i:30;s:6:\"snitch\";i:31;s:19:\"vip-legacy-redirect\";i:32;s:15:\"wp-rest-api-log\";i:33;s:12:\"wp_automatic\";i:34;s:6:\"wp_log\";i:35;s:17:\"wpephpcompat_jobs\";i:36;s:15:\"wprss_feed_item\";}","yes");
INSERT INTO 7ja_options VALUES("227","jetpack_sync_settings_dedicated_sync_enabled","1","yes");
INSERT INTO 7ja_options VALUES("229","jetpack_sync_settings_taxonomies_blacklist","a:149:{i:0;s:9:\"ancestors\";i:1;s:13:\"archives_link\";i:2;s:13:\"attached_file\";i:3;s:14:\"attached_media\";i:4;s:19:\"attached_media_args\";i:5;s:10:\"attachment\";i:6;s:19:\"available_languages\";i:7;s:6:\"avatar\";i:8;s:20:\"avatar_comment_types\";i:9;s:11:\"avatar_data\";i:10;s:10:\"avatar_url\";i:11;s:12:\"bloginfo_rss\";i:12;s:13:\"blogs_of_user\";i:13;s:13:\"bookmark_link\";i:14;s:9:\"bookmarks\";i:15;s:8:\"calendar\";i:16;s:13:\"canonical_url\";i:17;s:19:\"categories_per_page\";i:18;s:19:\"categories_taxonomy\";i:19;s:13:\"category_form\";i:20;s:20:\"category_form_fields\";i:21;s:17:\"category_form_pre\";i:22;s:7:\"comment\";i:23;s:10:\"comment_ID\";i:24;s:14:\"comment_author\";i:25;s:17:\"comment_author_IP\";i:26;s:20:\"comment_author_email\";i:27;s:19:\"comment_author_link\";i:28;s:18:\"comment_author_url\";i:29;s:23:\"comment_author_url_link\";i:30;s:12:\"comment_date\";i:31;s:15:\"comment_excerpt\";i:32;s:12:\"comment_link\";i:33;s:20:\"comment_misc_actions\";i:34;s:12:\"comment_text\";i:35;s:12:\"comment_time\";i:36;s:12:\"comment_type\";i:37;s:13:\"comments_link\";i:38;s:15:\"comments_number\";i:39;s:21:\"comments_pagenum_link\";i:40;s:11:\"custom_logo\";i:41;s:8:\"date_sql\";i:42;s:22:\"default_comment_status\";i:43;s:16:\"delete_post_link\";i:44;s:18:\"edit_bookmark_link\";i:45;s:17:\"edit_comment_link\";i:46;s:14:\"edit_post_link\";i:47;s:13:\"edit_tag_link\";i:48;s:14:\"edit_term_link\";i:49;s:14:\"edit_user_link\";i:50;s:8:\"enclosed\";i:51;s:15:\"feed_build_date\";i:52;s:13:\"form_advanced\";i:53;s:17:\"form_after_editor\";i:54;s:16:\"form_after_title\";i:55;s:21:\"form_before_permalink\";i:56;s:8:\"form_top\";i:57;s:18:\"handle_product_cat\";i:58;s:16:\"header_image_tag\";i:59;s:16:\"header_video_url\";i:60;s:9:\"image_tag\";i:61;s:15:\"image_tag_class\";i:62;s:12:\"lastpostdate\";i:63;s:16:\"lastpostmodified\";i:64;s:4:\"link\";i:65;s:18:\"link_category_form\";i:66;s:25:\"link_category_form_fields\";i:67;s:22:\"link_category_form_pre\";i:68;s:15:\"main_network_id\";i:69;s:5:\"media\";i:70;s:15:\"media_item_args\";i:71;s:7:\"ms_user\";i:72;s:7:\"network\";i:73;s:12:\"object_terms\";i:74;s:6:\"option\";i:75;s:4:\"page\";i:76;s:9:\"page_form\";i:77;s:15:\"page_of_comment\";i:78;s:8:\"page_uri\";i:79;s:12:\"pagenum_link\";i:80;s:5:\"pages\";i:81;s:6:\"plugin\";i:82;s:4:\"post\";i:83;s:14:\"post_galleries\";i:84;s:12:\"post_gallery\";i:85;s:9:\"post_link\";i:86;s:18:\"post_modified_time\";i:87;s:11:\"post_status\";i:88;s:9:\"post_time\";i:89;s:8:\"postmeta\";i:90;s:14:\"posts_per_page\";i:91;s:19:\"product_search_form\";i:92;s:11:\"profile_url\";i:93;s:4:\"pung\";i:94;s:9:\"role_list\";i:95;s:16:\"sample_permalink\";i:96;s:21:\"sample_permalink_html\";i:97;s:8:\"schedule\";i:98;s:11:\"search_form\";i:99;s:12:\"search_query\";i:100;s:9:\"shortlink\";i:101;s:4:\"site\";i:102;s:18:\"site_email_content\";i:103;s:13:\"site_icon_url\";i:104;s:11:\"site_option\";i:105;s:13:\"space_allowed\";i:106;s:3:\"tag\";i:107;s:8:\"tag_form\";i:108;s:15:\"tag_form_fields\";i:109;s:12:\"tag_form_pre\";i:110;s:8:\"tag_link\";i:111;s:4:\"tags\";i:112;s:13:\"tags_per_page\";i:113;s:4:\"term\";i:114;s:9:\"term_link\";i:115;s:18:\"term_relationships\";i:116;s:15:\"term_taxonomies\";i:117;s:13:\"term_taxonomy\";i:118;s:5:\"terms\";i:119;s:10:\"terms_args\";i:120;s:14:\"terms_defaults\";i:121;s:12:\"terms_fields\";i:122;s:13:\"terms_orderby\";i:123;s:23:\"the_archive_description\";i:124;s:17:\"the_archive_title\";i:125;s:14:\"the_categories\";i:126;s:8:\"the_date\";i:127;s:11:\"the_excerpt\";i:128;s:8:\"the_guid\";i:129;s:17:\"the_modified_date\";i:130;s:17:\"the_modified_time\";i:131;s:25:\"the_post_type_description\";i:132;s:8:\"the_tags\";i:133;s:9:\"the_terms\";i:134;s:8:\"the_time\";i:135;s:21:\"theme_starter_content\";i:136;s:7:\"to_ping\";i:137;s:4:\"user\";i:138;s:17:\"user_created_user\";i:139;s:9:\"user_form\";i:140;s:12:\"user_profile\";i:141;s:19:\"user_profile_update\";i:142;s:8:\"usermeta\";i:143;s:12:\"usernumposts\";i:144;s:12:\"users_drafts\";i:145;s:7:\"webhook\";i:146;s:6:\"widget\";i:147;s:19:\"woocommerce_archive\";i:148;s:12:\"wp_title_rss\";}","yes");
INSERT INTO 7ja_options VALUES("231","jetpack_sync_settings_render_filtered_content","0","yes");
INSERT INTO 7ja_options VALUES("232","jetpack_sync_settings_post_meta_whitelist","a:59:{i:0;s:24:\"_feedback_akismet_values\";i:1;s:15:\"_feedback_email\";i:2;s:22:\"_feedback_extra_fields\";i:3;s:21:\"_g_feedback_shortcode\";i:4;s:23:\"_jetpack_post_thumbnail\";i:5;s:25:\"_last_editor_used_jetpack\";i:6;s:18:\"_menu_item_classes\";i:7;s:27:\"_menu_item_menu_item_parent\";i:8;s:17:\"_menu_item_object\";i:9;s:20:\"_menu_item_object_id\";i:10;s:19:\"_menu_item_orphaned\";i:11;s:15:\"_menu_item_type\";i:12;s:14:\"_menu_item_xfn\";i:13;s:24:\"_publicize_facebook_user\";i:14;s:23:\"_publicize_twitter_user\";i:15;s:13:\"_thumbnail_id\";i:16;s:17:\"_wp_attached_file\";i:17;s:27:\"_wp_attachment_backup_sizes\";i:18;s:22:\"_wp_attachment_context\";i:19;s:24:\"_wp_attachment_image_alt\";i:20;s:35:\"_wp_attachment_is_custom_background\";i:21;s:31:\"_wp_attachment_is_custom_header\";i:22;s:23:\"_wp_attachment_metadata\";i:23;s:17:\"_wp_page_template\";i:24;s:30:\"_wp_trash_meta_comments_status\";i:25;s:21:\"_wpas_feature_enabled\";i:26;s:19:\"_wpas_is_tweetstorm\";i:27;s:10:\"_wpas_mess\";i:28;s:13:\"_wpas_options\";i:29;s:24:\"advanced_seo_description\";i:30;s:13:\"content_width\";i:31;s:14:\"custom_css_add\";i:32;s:23:\"custom_css_preprocessor\";i:33;s:9:\"enclosure\";i:34;s:9:\"imagedata\";i:35;s:10:\"nova_price\";i:36;s:17:\"publicize_results\";i:37;s:16:\"sharing_disabled\";i:38;s:18:\"switch_like_status\";i:39;s:15:\"videopress_guid\";i:40;s:18:\"vimeo_poster_image\";i:41;s:28:\"_jetpack_blogging_prompt_key\";i:42;s:25:\"jetpack_memberships_price\";i:43;s:28:\"jetpack_memberships_currency\";i:44;s:35:\"jetpack_memberships_site_subscriber\";i:45;s:30:\"jetpack_memberships_product_id\";i:46;s:24:\"jetpack_memberships_tier\";i:47;s:30:\"jetpack_memberships_is_deleted\";i:48;s:14:\"spay_paypal_id\";i:49;s:11:\"spay_status\";i:50;s:15:\"spay_product_id\";i:51;s:13:\"spay_quantity\";i:52;s:10:\"spay_price\";i:53;s:19:\"spay_customer_email\";i:54;s:13:\"spay_currency\";i:55;s:8:\"spay_cta\";i:56;s:10:\"spay_email\";i:57;s:13:\"spay_multiple\";i:58;s:20:\"spay_formatted_price\";}","yes");
INSERT INTO 7ja_options VALUES("234","jetpack_sync_settings_comment_meta_whitelist","a:4:{i:0;s:9:\"hc_avatar\";i:1;s:18:\"hc_foreign_user_id\";i:2;s:10:\"hc_post_as\";i:3;s:15:\"hc_wpcom_id_sig\";}","yes");
INSERT INTO 7ja_options VALUES("236","jetpack_sync_settings_max_enqueue_full_sync","100","yes");
INSERT INTO 7ja_options VALUES("237","jetpack_sync_settings_max_queue_size_full_sync","1000","yes");
INSERT INTO 7ja_options VALUES("238","jetpack_sync_settings_sync_via_cron","1","yes");
INSERT INTO 7ja_options VALUES("239","jetpack_sync_settings_cron_sync_time_limit","240","yes");
INSERT INTO 7ja_options VALUES("240","jetpack_sync_settings_known_importers","a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}","yes");
INSERT INTO 7ja_options VALUES("241","jetpack_sync_settings_term_relationships_full_sync_item_size","100","yes");
INSERT INTO 7ja_options VALUES("242","jetpack_sync_settings_sync_sender_enabled","1","yes");
INSERT INTO 7ja_options VALUES("243","jetpack_sync_settings_full_sync_sender_enabled","1","yes");
INSERT INTO 7ja_options VALUES("244","jetpack_sync_settings_full_sync_send_duration","9","yes");
INSERT INTO 7ja_options VALUES("245","jetpack_sync_settings_full_sync_limits","a:5:{s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}}","yes");
INSERT INTO 7ja_options VALUES("246","jetpack_sync_settings_checksum_disable","0","yes");
INSERT INTO 7ja_options VALUES("249","jetpack_plugin_api_action_links","a:3:{s:19:\"jetpack/jetpack.php\";a:1:{s:10:\"My Jetpack\";s:65:\"https://latitude39creative.com/wp-admin/admin.php?page=my-jetpack\";}s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";a:1:{s:8:\"Settings\";s:73:\"https://latitude39creative.com/wp-admin/admin.php?page=powerpack-settings\";}s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";a:2:{s:8:\"Settings\";s:82:\"https://latitude39creative.com/wp-admin/admin.php?page=premium-addons#tab=elements\";s:28:\"Rollback to Version  4.10.28\";s:105:\"https://latitude39creative.com/wp-admin/admin-post.php?action=premium_addons_rollback&_wpnonce=89f5224808\";}}","yes");
INSERT INTO 7ja_options VALUES("250","jetpack_search_plan_info","a:3:{s:23:\"supports_instant_search\";b:0;s:28:\"supports_only_classic_search\";b:0;s:15:\"supports_search\";b:0;}","yes");
INSERT INTO 7ja_options VALUES("251","jetpack_testimonial","0","yes");
INSERT INTO 7ja_options VALUES("266","jetpack_constants_sync_checksum","a:21:{s:7:\"ABSPATH\";i:1748669423;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:16:\"EMPTY_TRASH_DAYS\";i:1790921346;s:9:\"FS_METHOD\";i:634125391;s:12:\"IS_PRESSABLE\";i:634125391;s:16:\"JETPACK__VERSION\";i:4010445361;s:11:\"PHP_VERSION\";i:2642017422;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:4261170317;s:14:\"WP_CONTENT_DIR\";i:998585136;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:289485416;s:8:\"WP_DEBUG\";i:734881840;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:17:\"WP_POST_REVISIONS\";i:2322626082;}","yes");
INSERT INTO 7ja_options VALUES("267","jetpack_sync_https_history_main_network_site_url","a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}","yes");
INSERT INTO 7ja_options VALUES("310","jetpack_callables_sync_checksum","a:39:{s:21:\"get_loaded_extensions\";i:1016670539;s:11:\"get_plugins\";i:173853381;s:10:\"get_themes\";i:3697718947;s:24:\"get_plugins_action_links\";i:2930629498;s:28:\"has_file_system_write_access\";i:4261170317;s:8:\"home_url\";i:1845120508;s:16:\"hosting_provider\";i:769900095;s:12:\"is_fse_theme\";i:734881840;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:21:\"is_version_controlled\";i:734881840;s:6:\"locale\";i:110763218;s:17:\"main_network_site\";i:1845120508;s:26:\"main_network_site_wpcom_id\";i:3930394946;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:18:\"post_type_features\";i:567024289;s:10:\"post_types\";i:1205293914;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:3610467939;s:5:\"roles\";i:1539854653;s:10:\"shortcodes\";i:119801084;s:13:\"site_icon_url\";i:1955724378;s:8:\"site_url\";i:1845120508;s:10:\"taxonomies\";i:1792284205;s:13:\"theme_support\";i:106221829;s:8:\"timezone\";i:3808505409;s:23:\"wp_get_environment_type\";i:1138987844;s:18:\"wp_max_upload_size\";i:1819132959;s:10:\"wp_version\";i:2762667250;s:14:\"active_modules\";i:2277556560;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2903718415;s:24:\"available_jetpack_blocks\";i:2345406752;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;}","no");
INSERT INTO 7ja_options VALUES("311","jpsq_sync_checkout","0:0","no");
INSERT INTO 7ja_options VALUES("313","jp_sync_lock_full_sync","","no");
INSERT INTO 7ja_options VALUES("314","jp_sync_last_success_sync","1714523146.4042","no");
INSERT INTO 7ja_options VALUES("315","jetpack_next_sync_time_full-sync-enqueue","1708380660","yes");
INSERT INTO 7ja_options VALUES("318","jp_sync_last_success_immediate-send","1714495591.6775","no");
INSERT INTO 7ja_options VALUES("373","jetpack_sync_health_status","a:2:{s:6:\"status\";s:7:\"in_sync\";s:9:\"timestamp\";d:1668125915.7763729095458984375;}","yes");
INSERT INTO 7ja_options VALUES("389","recovery_keys","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("394","_transient_dirsize_cache","a:3:{s:54:\"/home3/kaktuscr/public_html/wp-content/uploads/2022/11\";i:0;s:51:\"/home3/kaktuscr/public_html/wp-content/uploads/2022\";i:0;s:46:\"/home3/kaktuscr/public_html/wp-content/uploads\";i:0;}","yes");
INSERT INTO 7ja_options VALUES("404","jetpack_active_plan","a:10:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:0:\"\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:11:\"license_key\";s:30:\"free_c8nTi93bkO1tZFJhLo8JYjQU3\";s:8:\"features\";a:2:{s:6:\"active\";a:17:{i:0;s:12:\"advanced-seo\";i:1;s:3:\"cdn\";i:2;s:9:\"donations\";i:3;s:17:\"jetpack-dashboard\";i:4;s:18:\"recurring-payments\";i:5;s:11:\"republicize\";i:6;s:17:\"security-settings\";i:7;s:17:\"seo-preview-tools\";i:8;s:14:\"send-a-message\";i:9;s:15:\"social-previews\";i:10;s:18:\"upload-audio-files\";i:11;s:18:\"upload-video-files\";i:12;s:15:\"whatsapp-button\";i:13;s:25:\"social-image-auto-convert\";i:14;s:26:\"social-mastodon-connection\";i:15;s:27:\"social-instagram-connection\";i:16;s:24:\"social-multi-connections\";}s:9:\"available\";a:43:{s:7:\"akismet\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"antispam\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:13:\"backups-daily\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:20:\"cloudflare-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:14:\"cloudflare-cdn\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/audio\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:17:\"full-activity-log\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:16:\"google-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:16:\"priority_support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:4:\"scan\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"simple-payments\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:18:\"social-shares-1000\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:28:\"subscriber-unlimited-imports\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:18:\"vaultpress-backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:13:\"video-hosting\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"videopress\";a:8:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:16:\"jetpack_complete\";i:7;s:24:\"jetpack_complete_monthly\";}s:22:\"videopress-1tb-storage\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:16:\"videopress/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:7:\"wordads\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:6:\"search\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:18:\"google-my-business\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:15:\"personal-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:17:\"real-time-backups\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:18:\"cloud-critical-css\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:17:\"image-cdn-quality\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"image-size-analysis\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:14:\"instant-search\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"performance-history\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:26:\"social-enhanced-publishing\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:10:\"stats-paid\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}}}}","yes");
INSERT INTO 7ja_options VALUES("411","https_detection_errors","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("413","jetpack_updates_sync_checksum","a:3:{s:14:\"update_plugins\";i:3291919468;s:13:\"update_themes\";i:1929708415;s:11:\"update_core\";i:779252622;}","yes");
INSERT INTO 7ja_options VALUES("479","nfd_coming_soon","false","yes");
INSERT INTO 7ja_options VALUES("482","bluehost_plugin_version","3.9.4","yes");
INSERT INTO 7ja_options VALUES("485","mm_install_date","Nov 11, 2022","yes");
INSERT INTO 7ja_options VALUES("486","mm_cron","a:1:{s:6:\"hourly\";a:1:{s:9:\"installed\";a:5:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:13:\"plugin_status\";s:2:\"ea\";s:9:\"installed\";s:2:\"el\";s:26:\"Install date: Nov 11, 2022\";s:4:\"keep\";b:0;}}}","yes");
INSERT INTO 7ja_options VALUES("487","bh_plugin_install_date","1668148559","yes");
INSERT INTO 7ja_options VALUES("488","do_activate","0","yes");
INSERT INTO 7ja_options VALUES("489","ce4wp_contacts_db_version","1.0","yes");
INSERT INTO 7ja_options VALUES("497","finished_updating_comment_type","1","yes");
INSERT INTO 7ja_options VALUES("562","eig_last_site_login","2023-06-01T23:55:05+00:00","yes");
INSERT INTO 7ja_options VALUES("575","ce4wp_handshake_token","23F8A5B8-7836-4E48-9622-EA71D563F4C9","yes");
INSERT INTO 7ja_options VALUES("576","ce4wp_handshake_expiration","1714520657","yes");
INSERT INTO 7ja_options VALUES("577","ce4wp_instance_uuid","636e68335e165","yes");
INSERT INTO 7ja_options VALUES("593","nfd_data_queue","a:0:{}","no");
INSERT INTO 7ja_options VALUES("607","recently_activated","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("616","deleted_plugin","a:7:{s:4:\"slug\";s:9:\"hello.php\";s:7:\"version\";s:5:\"1.7.2\";s:5:\"title\";s:11:\"Hello Dolly\";s:3:\"url\";s:41:\"http://wordpress.org/plugins/hello-dolly/\";s:6:\"active\";b:0;s:2:\"mu\";b:0;s:12:\"auto_updates\";b:1;}","yes");
INSERT INTO 7ja_options VALUES("662","jetpack_next_sync_time_sync","1714523156","yes");
INSERT INTO 7ja_options VALUES("675","stats_cache","a:2:{s:32:\"8d65eeff74d840c334238ccf126a9d4d\";a:1:{i:1676477454;a:0:{}}s:32:\"dcd3abe96002523430e5c0a40b5c7f83\";a:1:{i:1676477455;a:0:{}}}","yes");
INSERT INTO 7ja_options VALUES("716","elementor_active_kit","9","yes");
INSERT INTO 7ja_options VALUES("717","elementor_font_display","swap","yes");
INSERT INTO 7ja_options VALUES("724","elementor_version","3.21.4","yes");
INSERT INTO 7ja_options VALUES("725","elementor_install_history","a:60:{s:5:\"3.7.7\";i:1668256991;s:5:\"3.8.0\";i:1668256992;s:5:\"3.8.1\";i:1669121706;s:5:\"3.8.2\";i:1670418482;s:5:\"3.9.0\";i:1670418483;s:5:\"3.9.1\";i:1671108870;s:5:\"3.9.2\";i:1671720682;s:6:\"3.10.0\";i:1673356515;s:6:\"3.10.1\";i:1674044342;s:6:\"3.10.2\";i:1675340751;s:6:\"3.10.3\";i:1676334053;s:6:\"3.11.0\";i:1676334054;s:6:\"3.11.1\";i:1676507356;s:6:\"3.11.2\";i:1677113294;s:6:\"3.11.3\";i:1678193339;s:6:\"3.11.4\";i:1678667154;s:6:\"3.11.5\";i:1678796826;s:6:\"3.12.0\";i:1680093678;s:6:\"3.12.1\";i:1680444214;s:6:\"3.12.2\";i:1682253113;s:6:\"3.13.0\";i:1683559153;s:6:\"3.13.1\";i:1683682034;s:6:\"3.13.2\";i:1683851753;s:6:\"3.13.3\";i:1684844609;s:6:\"3.13.4\";i:1685319867;s:6:\"3.14.0\";i:1687177243;s:6:\"3.14.1\";i:1687784167;s:6:\"3.15.0\";i:1690808604;s:6:\"3.15.1\";i:1691023240;s:6:\"3.15.2\";i:1691584794;s:6:\"3.15.3\";i:1692577240;s:6:\"3.16.0\";i:1694523256;s:6:\"3.16.1\";i:1694566096;s:6:\"3.16.2\";i:1694610989;s:6:\"3.16.3\";i:1694739172;s:6:\"3.16.4\";i:1695259052;s:6:\"3.16.5\";i:1696854024;s:6:\"3.16.6\";i:1697589870;s:6:\"3.17.0\";i:1698237620;s:6:\"3.17.1\";i:1698280631;s:6:\"3.17.2\";i:1698841169;s:6:\"3.17.3\";i:1699489479;s:6:\"3.18.0\";i:1701735830;s:6:\"3.18.1\";i:1701909224;s:6:\"3.18.2\";i:1702041914;s:6:\"3.18.3\";i:1703089692;s:6:\"3.19.0\";i:1706575144;s:6:\"3.19.1\";i:1707180633;s:6:\"3.19.2\";i:1707356189;s:6:\"3.19.4\";i:1709857544;s:6:\"3.20.0\";i:1710159600;s:6:\"3.20.1\";i:1710335514;s:6:\"3.20.2\";i:1710983751;s:6:\"3.20.3\";i:1711456128;s:6:\"3.20.4\";i:1712796292;s:6:\"3.21.0\";i:1713188160;s:6:\"3.21.1\";i:1713443876;s:6:\"3.21.2\";i:1713961105;s:6:\"3.21.3\";i:1714090818;s:6:\"3.21.4\";i:1714495591;}","yes");
INSERT INTO 7ja_options VALUES("739","elementor_events_db_version","1.0.0","no");
INSERT INTO 7ja_options VALUES("740","elementor_onboarded","1","yes");
INSERT INTO 7ja_options VALUES("743","elementor_connect_site_key","f24c9d999271ad7efbfd415cd1df2924","yes");
INSERT INTO 7ja_options VALUES("780","elementor_remote_info_library","a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{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:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;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:27:{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:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s: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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}","no");
INSERT INTO 7ja_options VALUES("781","elementor_remote_info_feed_data","a:3:{i:0;a:5:{s:5:\"title\";s:71:\"6 Best WordPress Image Optimization Plugins of 2024 (+Real Image Tests)\";s:7:\"excerpt\";s:116:\"Explore the top 6 WordPress image optimization plugins of 2024 for faster site speed and better SEO with real tests.\";s:7:\"created\";i:1712656602;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:126:\"https://elementor.com/blog/image-optimization-plugins/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:84:\"Introducing Elementor 3.20: New Display Condition Features, Performance Improvements\";s:7:\"excerpt\";s:189:\"Version 3.20 introduces exciting new features that enhance the flexibility of Display Conditions. This version also improves the loading time of your site’s frontend and backend, and more\";s:7:\"created\";i:1710845895;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:167:\"https://elementor.com/blog/elementor-320-display-conditions-enhacments-peformance-improvements/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.19: Display Conditions, Role Permissions in the Element Manager, and More\";s:7:\"excerpt\";s:230:\"Create dynamic visitor experiences, customize your teammates’ widget panels, protect forms from spam submissions, generate variations in the template library, and use URLs from the open web as a reference to generate containers.\";s:7:\"created\";i:1707315304;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/elementor-319-display-conditions-akismet-integration/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}","no");
INSERT INTO 7ja_options VALUES("805","current_theme","Hello Elementor","yes");
INSERT INTO 7ja_options VALUES("806","theme_mods_hello-elementor","a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"menu-1\";i:9;s:6:\"menu-2\";i:11;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:221;}","yes");
INSERT INTO 7ja_options VALUES("808","theme_switched","","yes");
INSERT INTO 7ja_options VALUES("814","hello_theme_version","3.0.1","yes");
INSERT INTO 7ja_options VALUES("877","_elementor_installed_time","1668192517","yes");
INSERT INTO 7ja_options VALUES("895","sharing-options","a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}","yes");
INSERT INTO 7ja_options VALUES("897","post_by_email_address1","NULL","yes");
INSERT INTO 7ja_options VALUES("898","jetpack_last_connect_url_check","1704922475","no");
INSERT INTO 7ja_options VALUES("1003","elementor_pro_version","3.19.2","yes");
INSERT INTO 7ja_options VALUES("1004","widget_elementor-library","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO 7ja_options VALUES("1016","_elementor_pro_installed_time","1668212226","yes");
INSERT INTO 7ja_options VALUES("1017","elementor_submissions_db_version","5","yes");
INSERT INTO 7ja_options VALUES("1020","elementor_allow_tracking","yes","yes");
INSERT INTO 7ja_options VALUES("1021","elementor_tracker_last_send","1714407541","yes");
INSERT INTO 7ja_options VALUES("1026","elementor_pro_license_key","65e453f1a562678b0a2e3c64a2329b75","yes");
INSERT INTO 7ja_options VALUES("1027","_elementor_pro_license_data_fallback","a:2:{s:7:\"timeout\";i:1670366507;s:5:\"value\";s:207:\"{\"expires\":\"2023-11-25 23:42:33\",\"subscription_id\":8840126,\"success\":true,\"license\":\"valid\",\"subscriptions\":\"enable\",\"features\":[\"experts\",\"editor_comments\",\"template_access_level_20\",\"kit_access_level_20\"]}\";}","no");
INSERT INTO 7ja_options VALUES("1028","_elementor_pro_license_data","a:2:{s:7:\"timeout\";i:1670323307;s:5:\"value\";s:207:\"{\"expires\":\"2023-11-25 23:42:33\",\"subscription_id\":8840126,\"success\":true,\"license\":\"valid\",\"subscriptions\":\"enable\",\"features\":[\"experts\",\"editor_comments\",\"template_access_level_20\",\"kit_access_level_20\"]}\";}","no");
INSERT INTO 7ja_options VALUES("1029","elementor_notes_db_version","5","yes");
INSERT INTO 7ja_options VALUES("1030","_elementor_pro_api_requests_lock","a:2:{s:16:\"get_license_data\";i:1714429462;s:11:\"get_version\";i:1714523145;}","yes");
INSERT INTO 7ja_options VALUES("1050","_transient_health-check-site-status-result","{\"good\":17,\"recommended\":5,\"critical\":1}","yes");
INSERT INTO 7ja_options VALUES("1095","elementor_fonts_manager_font_types","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("1096","elementor_fonts_manager_fonts","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("1101","elementor_unfiltered_files_upload","1","yes");
INSERT INTO 7ja_options VALUES("1102","elementor_log","a:43:{s:32:\"acb60ce266c07ec9f91dc20372e8929b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-21 01:15:51\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-21 01:15:51\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c415f69d265b9c4369036c83f3de86e6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-26 12:28:47\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-26 12:28:47\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"9fd4e36dc74e3819b11b7b53da3985f2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-26 12:28:47\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-26 12:28:47\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"b2d913ef8714df5e3ab5374885fe5955\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-26 12:28:48\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.2\";s:2:\"to\";s:6:\"3.20.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-26 12:28:48\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.2\";s:2:\"to\";s:6:\"3.20.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"93c2f1297e6fb47bbe5ecd60375d91b4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-26 12:28:48\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-26 12:28:48\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"6108599334366f9a9e764a2342b672cb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-26 12:28:48\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.2\";s:2:\"to\";s:6:\"3.20.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-26 12:28:48\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.2\";s:2:\"to\";s:6:\"3.20.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"09d02359a79cb7256c3bc351adabe25a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-11 00:44:51\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-11 00:44:51\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"9d22ff71894bf5e1d38017e3d1c1e8c7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-11 00:44:51\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-11 00:44:51\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"d74cbb2dd4ad4344df94c357bfe74c6c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-11 00:44:51\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.3\";s:2:\"to\";s:6:\"3.20.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-11 00:44:51\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.3\";s:2:\"to\";s:6:\"3.20.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"312c2280a49716a51c1edb0643f7e1ce\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-11 00:44:52\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-11 00:44:52\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"3324dc52cb07ae80888bfc4bb254f2d1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-11 00:44:52\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.3\";s:2:\"to\";s:6:\"3.20.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-11 00:44:52\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.3\";s:2:\"to\";s:6:\"3.20.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"bdf99c3564b3efe0b9ac589484326032\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-15 13:35:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-15 13:35:59\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"4160894f2e2428b2e1c48b402fc0feaf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-15 13:35:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-15 13:35:59\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"6994fe2492c048060a482c0429c2f3a4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-15 13:35:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.4\";s:2:\"to\";s:6:\"3.21.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-15 13:35:59\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.4\";s:2:\"to\";s:6:\"3.21.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"325c9c362d47841cb8dc563022f4d466\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-15 13:36:00\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-15 13:36:00\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"65f5fb0aa9065d805bc7603512e8cc4d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-15 13:36:00\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.4\";s:2:\"to\";s:6:\"3.21.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-15 13:36:00\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.4\";s:2:\"to\";s:6:\"3.21.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"58fb37337126433428b9342b4ff6938d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-04-16 15:12:30\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of undefined (reading &#039;value&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2024-04-16 15:12:30\";i:1;s:19:\"2024-04-16 15:27:17\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1713280350\";s:7:\"message\";s:53:\"Cannot read properties of undefined (reading \'value\')\";s:3:\"url\";s:76:\"https://latitude39creative.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"28760\";}s:7:\"\0*\0file\";s:76:\"https://latitude39creative.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"28760\";}s:32:\"1668ce165f32e38fa2bfc91636aad18b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-04-16 15:12:41\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:52:\"Automatic conversion of false to array is deprecated\";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-04-16 15:12:41\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:52:\"Automatic conversion of false to array is deprecated\";s:4:\"file\";s:84:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:102;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:84:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:102;}s:32:\"1350ecfef5ee3ace710e0ae0d5ce7be8\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-04-16 15:27:54\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:79:\"strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated\";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-04-16 15:27:54\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:79:\"strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated\";s:4:\"file\";s:84:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:81;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:84:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:81;}s:32:\"530706d60051184a5b7c05d8cae0651d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-18 12:37:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-18 12:37:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"dae978c73081a70f3e57c4649a9eae2f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-18 12:37:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-18 12:37:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"80ac642f63221ac890656eeb499147e4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-18 12:37:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.0\";s:2:\"to\";s:6:\"3.21.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-18 12:37:55\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.0\";s:2:\"to\";s:6:\"3.21.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d10a38e12f78b033bec5400385cafae7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-18 12:37:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-18 12:37:56\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"62e5a463ea3ce5616203748e1a3164a0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-18 12:37:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.0\";s:2:\"to\";s:6:\"3.21.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-18 12:37:56\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.0\";s:2:\"to\";s:6:\"3.21.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3d24b03d988c3505e420899a053fe921\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-24 12:18:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-24 12:18:24\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"1a92cdf9152a7b3b63f887d58f911c76\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-24 12:18:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-24 12:18:24\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"6a4492a7a8508b332fd246377c9286ea\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-24 12:18:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.1\";s:2:\"to\";s:6:\"3.21.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-24 12:18:24\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.1\";s:2:\"to\";s:6:\"3.21.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c6c35d6e064a6520b1b1e4af16da9946\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-24 12:18:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-24 12:18:25\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"42e183f361a448dc6e1cebc8467562de\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-24 12:18:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.1\";s:2:\"to\";s:6:\"3.21.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-24 12:18:25\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.1\";s:2:\"to\";s:6:\"3.21.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"385dad1456bddf3bb74aac295b1d2bb7\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-04-24 12:25:53\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:36:\"Undefined array key &quot;icon&quot;\";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:332;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2024-04-25 16:07:33\";i:1;s:19:\"2024-04-25 16:36:02\";i:2;s:19:\"2024-04-25 16:36:53\";i:3;s:19:\"2024-04-25 16:48:26\";i:4;s:19:\"2024-04-25 17:08:17\";i:5;s:19:\"2024-04-25 17:19:26\";i:6;s:19:\"2024-04-25 17:49:50\";i:7;s:19:\"2024-04-25 17:54:07\";i:8;s:19:\"2024-04-25 18:02:54\";i:9;s:19:\"2024-04-25 18:02:56\";i:10;s:19:\"2024-04-25 18:05:15\";i:11;s:19:\"2024-04-25 18:06:21\";i:12;s:19:\"2024-04-25 18:06:31\";i:13;s:19:\"2024-04-25 18:10:03\";i:14;s:19:\"2024-04-25 18:14:08\";i:15;s:19:\"2024-04-25 18:19:27\";i:16;s:19:\"2024-04-25 18:19:51\";i:17;s:19:\"2024-04-25 18:29:19\";i:18;s:19:\"2024-04-25 18:45:23\";i:19;s:19:\"2024-04-25 19:03:42\";i:20;s:19:\"2024-04-25 19:17:07\";i:21;s:19:\"2024-04-25 19:30:36\";i:22;s:19:\"2024-04-25 19:54:47\";i:23;s:19:\"2024-04-25 20:08:22\";i:24;s:19:\"2024-04-25 20:18:58\";i:25;s:19:\"2024-04-25 20:40:22\";i:26;s:19:\"2024-04-25 20:45:13\";i:27;s:19:\"2024-04-25 20:49:46\";i:28;s:19:\"2024-04-25 20:59:39\";i:29;s:19:\"2024-04-25 21:03:23\";i:30;s:19:\"2024-04-25 21:09:56\";i:31;s:19:\"2024-04-25 21:12:29\";i:32;s:19:\"2024-04-25 21:12:31\";i:33;s:19:\"2024-04-25 21:47:20\";i:34;s:19:\"2024-04-25 21:55:38\";i:35;s:19:\"2024-04-25 21:59:40\";i:36;s:19:\"2024-04-25 22:02:27\";i:37;s:19:\"2024-04-25 22:54:52\";i:38;s:19:\"2024-04-25 23:04:17\";i:39;s:19:\"2024-04-25 23:04:38\";i:40;s:19:\"2024-04-25 23:14:55\";i:41;s:19:\"2024-04-26 00:08:17\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:26:\"Undefined array key \"icon\"\";s:4:\"file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/widgets/icon-box.php\";s:4:\"line\";i:708;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/widgets/icon-box.php\";s:7:\"\0*\0line\";i:708;}s:32:\"8dc034f77122432f57943c1f591b03a8\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-04-24 22:07:15\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:36:\"Undefined array key &quot;icon&quot;\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/widgets/icon-box.php\";s:4:\"line\";i:695;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:89:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:2315;s:8:\"function\";s:6:\"render\";s:5:\"class\";s:25:\"Elementor\\Widget_Icon_Box\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:4:\"line\";i:634;s:8:\"function\";s:14:\"render_by_mode\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:4:\"line\";i:775;s:8:\"function\";s:14:\"render_content\";s:5:\"class\";s:21:\"Elementor\\Widget_Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:87:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/base/element-base.php\";s:4:\"line\";i:464;s:8:\"function\";s:13:\"print_content\";s:5:\"class\";s:21:\"Elementor\\Widget_Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2024-04-24 22:07:15\";i:1;s:19:\"2024-04-24 22:07:15\";i:2;s:19:\"2024-04-24 22:07:15\";i:3;s:19:\"2024-04-25 12:58:22\";i:4;s:19:\"2024-04-25 12:58:22\";i:5;s:19:\"2024-04-25 12:58:22\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:26:\"Undefined array key \"icon\"\";s:4:\"file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/widgets/icon-box.php\";s:4:\"line\";i:695;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/widgets/icon-box.php\";s:7:\"\0*\0line\";i:695;}s:32:\"66a1851d9ce98ebf64e121645043f4e1\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-04-24 22:07:15\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:36:\"Undefined array key &quot;icon&quot;\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/widgets/icon-box.php\";s:4:\"line\";i:708;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:89:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:2315;s:8:\"function\";s:6:\"render\";s:5:\"class\";s:25:\"Elementor\\Widget_Icon_Box\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:4:\"line\";i:634;s:8:\"function\";s:14:\"render_by_mode\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:4:\"line\";i:775;s:8:\"function\";s:14:\"render_content\";s:5:\"class\";s:21:\"Elementor\\Widget_Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:87:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/base/element-base.php\";s:4:\"line\";i:464;s:8:\"function\";s:13:\"print_content\";s:5:\"class\";s:21:\"Elementor\\Widget_Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2024-04-24 22:07:15\";i:1;s:19:\"2024-04-24 22:07:15\";i:2;s:19:\"2024-04-24 22:07:15\";i:3;s:19:\"2024-04-25 12:58:22\";i:4;s:19:\"2024-04-25 12:58:22\";i:5;s:19:\"2024-04-25 12:58:22\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:26:\"Undefined array key \"icon\"\";s:4:\"file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/widgets/icon-box.php\";s:4:\"line\";i:708;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:86:\"/home3/kaktuscr/public_html/wp-content/plugins/elementor/includes/widgets/icon-box.php\";s:7:\"\0*\0line\";i:708;}s:32:\"94a15e01074d0792dc3738e470e68830\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-26 00:20:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-26 00:20:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"4c929c6c6913c4ddfd700d454e85e0c8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-26 00:20:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-26 00:20:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"d7f4d88f7a4eab109eebe36db52259d0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-26 00:20:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.2\";s:2:\"to\";s:6:\"3.21.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-26 00:20:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.2\";s:2:\"to\";s:6:\"3.21.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"87a2edaee245043e822e389cd0098ee0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-26 00:20:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-26 00:20:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"5517fec360fe4907abe70ebc1f822512\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-26 00:20:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.2\";s:2:\"to\";s:6:\"3.21.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-26 00:20:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.2\";s:2:\"to\";s:6:\"3.21.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b8ee8f29f57eba7cdea2c6cd4fb9692a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-30 16:46:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.3\";s:2:\"to\";s:6:\"3.21.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-30 16:46:29\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.3\";s:2:\"to\";s:6:\"3.21.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"9f0e4d4544bdbd45de4060d7d9bbef5d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-30 16:46:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-30 16:46:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"1a50f24651d1ed89ffe4bb9896228421\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-30 16:46:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-30 16:46:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"eca61172481dbf6e03c489c19b1727ac\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-30 16:46:31\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-30 16:46:31\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"3308e21ce8be6ffa96aa05d8f796f166\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-30 16:46:31\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.3\";s:2:\"to\";s:6:\"3.21.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-30 16:46:31\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.3\";s:2:\"to\";s:6:\"3.21.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"1fa719cf5ce0e86fefafa6383534ebac\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-30 16:46:33\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.3\";s:2:\"to\";s:6:\"3.21.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-30 16:46:33\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.3\";s:2:\"to\";s:6:\"3.21.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}","no");
INSERT INTO 7ja_options VALUES("1111","elementor_previous_kit","6","yes");
INSERT INTO 7ja_options VALUES("1143","pa_edit_time","1713282991","yes");
INSERT INTO 7ja_options VALUES("1144","elementor_pro_theme_builder_conditions","a:4:{s:6:\"footer\";a:1:{i:715;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:601;a:1:{i:0;s:15:\"include/general\";}}s:7:\"archive\";a:1:{i:31;a:1:{i:0;s:28:\"include/archive/post_archive\";}}s:6:\"single\";a:2:{i:24;a:1:{i:0;s:21:\"include/singular/post\";}i:11;a:1:{i:0;s:29:\"include/singular/not_found404\";}}}","yes");
INSERT INTO 7ja_options VALUES("1269","wp_calendar_block_has_published_posts","1","yes");
INSERT INTO 7ja_options VALUES("2028","elementor_library_category_children","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("2029","elementor_import_sessions","a:1:{i:1668212871;a:7:{s:10:\"session_id\";s:13:\"636ee7abc8d7c\";s:8:\"kit_name\";s:24:\"digital-marketing-agency\";s:10:\"kit_source\";s:11:\"kit-library\";s:7:\"user_id\";i:1;s:15:\"start_timestamp\";i:1668212662;s:13:\"end_timestamp\";i:1668212871;s:7:\"runners\";a:4:{s:13:\"site-settings\";a:3:{s:15:\"previous_kit_id\";i:0;s:13:\"active_kit_id\";i:6;s:15:\"imported_kit_id\";i:9;}s:9:\"templates\";a:0:{}s:17:\"elementor-content\";a:1:{s:13:\"page_on_front\";i:0;}s:10:\"wp-content\";a:1:{s:17:\"custom_post_types\";a:0:{}}}}}","no");
INSERT INTO 7ja_options VALUES("2116","temp_count","a:25:{s:11:\"Latest News\";s:11:\"Latest News\";s:14:\"Single Project\";s:14:\"Single Project\";s:21:\"Elementor Footer #715\";s:21:\"Elementor Footer #715\";s:13:\"Services Hero\";s:13:\"Services Hero\";s:11:\"Portfolio 2\";s:11:\"Portfolio 2\";s:10:\"Contact us\";s:10:\"Contact us\";s:11:\"Client list\";s:11:\"Client list\";s:6:\"Header\";s:6:\"Header\";s:21:\"Elementor Header #601\";s:21:\"Elementor Header #601\";s:4:\"Blog\";s:4:\"Blog\";s:19:\"Our latest projects\";s:19:\"Our latest projects\";s:13:\"why choose us\";s:13:\"why choose us\";s:10:\"What we do\";s:10:\"What we do\";s:12:\"Testimonials\";s:12:\"Testimonials\";s:14:\"Why choose us3\";s:14:\"Why choose us3\";s:11:\"Who we are2\";s:11:\"Who we are2\";s:11:\"Who we are1\";s:11:\"Who we are1\";s:8:\"About Us\";s:8:\"About Us\";s:6:\"Footer\";s:6:\"Footer\";s:13:\"Posts Archive\";s:13:\"Posts Archive\";s:11:\"Single Post\";s:11:\"Single Post\";s:13:\"Contact Popup\";s:13:\"Contact Popup\";s:8:\"404 Page\";s:8:\"404 Page\";s:24:\"Digital Marketing Agency\";s:24:\"Digital Marketing Agency\";s:11:\"Default Kit\";s:11:\"Default Kit\";}","yes");
INSERT INTO 7ja_options VALUES("2123","pa_elements_ec6d03819","a:0:{}","no");
INSERT INTO 7ja_options VALUES("2124","pa_edit_ec6d03819","1668212892","no");
INSERT INTO 7ja_options VALUES("2129","pa_elements_3572e9aa2","a:0:{}","no");
INSERT INTO 7ja_options VALUES("2130","pa_edit_3572e9aa2","1668212892","no");
INSERT INTO 7ja_options VALUES("2131","pa_elements_9d659a96d","a:0:{}","no");
INSERT INTO 7ja_options VALUES("2132","pa_edit_9d659a96d","1668212892","no");
INSERT INTO 7ja_options VALUES("2136","elementor_scheme_color","a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}","yes");
INSERT INTO 7ja_options VALUES("2137","elementor_scheme_typography","a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}","yes");
INSERT INTO 7ja_options VALUES("2138","elementor_scheme_color-picker","a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}","yes");
INSERT INTO 7ja_options VALUES("2190","pa_elements_6c060b86b","a:1:{i:0;s:18:\"premium-addon-blog\";}","no");
INSERT INTO 7ja_options VALUES("2191","pa_edit_6c060b86b","1713282991","no");
INSERT INTO 7ja_options VALUES("2258","site_logo","221","yes");
INSERT INTO 7ja_options VALUES("3787","auto_core_update_notified","a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:28:\"latitude39creative@gmail.com\";s:7:\"version\";s:5:\"6.5.2\";s:9:\"timestamp\";i:1714523146;}","no");
INSERT INTO 7ja_options VALUES("6746","_mm_refresh_token","5d278778-8a48-4a98-8a3d-3ac70a141f3d","yes");
INSERT INTO 7ja_options VALUES("6962","wpcom_publish_posts_with_markdown","1","yes");
INSERT INTO 7ja_options VALUES("7047","_elementor_pro_license_v2_data_fallback","a:2:{s:7:\"timeout\";i:1714574799;s:5:\"value\";s:2641:\"{\"expires\":\"2024-11-25 23:45:16\",\"subscription_id\":8840126,\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"editor_comments\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\"],\"tier\":\"expert\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}","no");
INSERT INTO 7ja_options VALUES("7048","_elementor_pro_license_v2_data","a:2:{s:7:\"timeout\";i:1714531599;s:5:\"value\";s:2641:\"{\"expires\":\"2024-11-25 23:45:16\",\"subscription_id\":8840126,\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"editor_comments\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\"],\"tier\":\"expert\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}","no");
INSERT INTO 7ja_options VALUES("7267","elementor_custom_icon_sets_config","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("7445","pa_elements_0a18a18f3","a:1:{i:0;s:19:\"premium-img-gallery\";}","no");
INSERT INTO 7ja_options VALUES("7446","pa_edit_0a18a18f3","1713282991","no");
INSERT INTO 7ja_options VALUES("7539","pa_elements_ec4050cbd","a:0:{}","no");
INSERT INTO 7ja_options VALUES("7540","pa_edit_ec4050cbd","1713282991","no");
INSERT INTO 7ja_options VALUES("7541","pa_elements_da2925b35","a:0:{}","no");
INSERT INTO 7ja_options VALUES("7542","pa_edit_da2925b35","1713282991","no");
INSERT INTO 7ja_options VALUES("7600","nav_menu_options","a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}","yes");
INSERT INTO 7ja_options VALUES("7933","pa_elements_0570a7739","a:0:{}","no");
INSERT INTO 7ja_options VALUES("7934","pa_edit_0570a7739","1713279998","no");
INSERT INTO 7ja_options VALUES("9633","pa_elements_d6967e0e9","a:0:{}","no");
INSERT INTO 7ja_options VALUES("9634","pa_edit_d6967e0e9","1713282991","no");
INSERT INTO 7ja_options VALUES("9758","pa_elements_36c78482b","a:0:{}","no");
INSERT INTO 7ja_options VALUES("9759","pa_edit_36c78482b","1692650944","no");
INSERT INTO 7ja_options VALUES("12036","pa_elements_fab2ee4d3","a:0:{}","no");
INSERT INTO 7ja_options VALUES("12037","pa_edit_fab2ee4d3","1699920545","no");
INSERT INTO 7ja_options VALUES("14920","jp_sync_retry_after_sync","","no");
INSERT INTO 7ja_options VALUES("14921","jp_sync_error_log_sync","a:4:{s:15:\"1674087863.7344\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:10:\"IXR_-32300\";a:1:{i:0;s:46:\"transport error - HTTP status code was not 200\";}}s:10:\"error_data\";a:1:{s:10:\"IXR_-32300\";a:5:{s:7:\"headers\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 19 Jan 2023 00:24:23 GMT\";s:12:\"content-type\";s:9:\"text/html\";s:14:\"content-length\";s:3:\"960\";s:4:\"etag\";s:14:\"\"631a7ff6-3c0\"\";s:4:\"x-ac\";s:17:\"4.den _dfw BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:960:\"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"><head profile=\"http://gmpg.org/xfn/11\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n<title>WordPress.com 502 Error</title>\n<style type=\"text/css\">\nh1 {\n	font-weight: normal;\n	font-size: 40px;\n}\nbody {\nline-height: 1.6em; font-family: Georgia, serif; width: 390px; margin: auto;\ntext-align: center;\n}\n.message {\n	font-size: 22px;\n	width: 350px;\n	margin: 10px auto;\n}\n\n</style>\n<script type=\"text/javascript\" src=\"//stats.wp.com/wpcom.js?5\"></script>\n<script type=\"text/javascript\">\n_error = \'502-lb\';\nfzd();\n</script>\n</head>\n<body>\n<h1>Whoops!</h1>\n<p class=\"message\">There was a small systems error. Please try refreshing the page and if the error is still there <a href=\"https://wordpress.com/contact-support/\">drop us a note</a> and let us know.</p>\n</body>\n</html>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:502;s:7:\"message\";s:11:\"Bad Gateway\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:0:{}}s:15:\"1676475028.2864\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:10:\"IXR_-32300\";a:1:{i:0;s:46:\"transport error - HTTP status code was not 200\";}}s:10:\"error_data\";a:1:{s:10:\"IXR_-32300\";a:5:{s:7:\"headers\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 15 Feb 2023 15:30:28 GMT\";s:12:\"content-type\";s:9:\"text/html\";s:14:\"content-length\";s:4:\"2168\";s:4:\"etag\";s:14:\"\"5528a041-878\"\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:2168:\"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"><head profile=\"http://gmpg.org/xfn/11\">\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n	<title>WordPress.com &#8212; 503 Error</title>\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n	<link rel=\"stylesheet\" href=\"//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600\" />\n	<link rel=\"stylesheet\" href=\"https://s0.wp.com/error-docs/style.css\" />\n	<script type=\"text/javascript\" src=\"//stats.wp.com/wpcom.js?22\"></script>\n	<script type=\"text/javascript\">\n	_error = \'503\';\n	fzd();\n	</script>\n</head>\n<body>\n	<h1>Whoops!</h1>\n	\n	<div class=\"message\">\n		<p>Something has gone wrong with our servers, and we&#8217;ve just been notified of the problem.</p>\n		<p>This will be fixed as soon as possible, so kindly reload in a minute and things should be back to normal.</p> \n		\n		<footer>\n			<ul class=\"footer-links\">\n				<li><a href=\"javascript:history.back()\">← Go Back</a></li>\n				<li><a href=\"https://support.wordpress.com/\">Support</a></li>\n				<li><a href=\"http://status.automattic.com\">Status</a></li>\n				<li><a href=\"https://twitter.com/wordpressdotcom\">Twitter</a></li>\n			</ul>\n			<a class=\"wordpress-link\" href=\"https://wordpress.com/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"-248 250 14 14\" enable-background=\"new -248 250 14 14\">\n					<path fill=\"#a8bece\" d=\"M-234 257c0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7 7 3.1 7 7zm-9.8 5.7l-3-8.2c-.4.8-.6 1.7-.6 2.6.1 2.4 1.6 4.5 3.6 5.6zm6.6-4c.3-.9.5-1.5.5-2 0-.8-.3-1.3-.5-1.7-.3-.5-.6-1-.6-1.5 0-.6.4-1.1 1.1-1.1h.1c-1.1-1.1-2.7-1.7-4.3-1.6-2.2 0-4.1 1.1-5.3 2.8h.4c.7 0 1.7-.1 1.7-.1.3 0 .4.5 0 .5 0 0-.3 0-.7.1l2.3 6.8 1.4-4.1-.9-2.7h-.6c-.4 0-.3-.5 0-.5 0 0 1 .1 1.7.1s1.7-.1 1.7-.1c.3 0 .3.4 0 .5 0 0-.3 0-.7.1l2.3 6.8.4-2.3zm-1.7 4.2l-2-5.4-1.9 5.5c.6.2 1.2.2 1.8.2.7.1 1.4 0 2.1-.3zm3.5-8.3c0 .6-.1 1.4-.5 2.3l-1.9 5.6c1.9-1.1 3.1-3.2 3.1-5.5 0-1.1-.3-2.1-.8-3 0 .2.1.4.1.6z\"/>\n				</svg>\n			</a>\n		</footer>\n	</div>\n</body>\n</html>\";s:8:\"response\";a:2:{s:4:\"code\";i:502;s:7:\"message\";s:11:\"Bad Gateway\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:0:{}}s:15:\"1686279969.9682\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:10:\"IXR_-32300\";a:1:{i:0;s:46:\"transport error - HTTP status code was not 200\";}}s:10:\"error_data\";a:1:{s:10:\"IXR_-32300\";a:5:{s:7:\"headers\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 09 Jun 2023 03:06:09 GMT\";s:12:\"content-type\";s:9:\"text/html\";s:14:\"content-length\";s:4:\"2169\";s:4:\"etag\";s:14:\"\"63ed68e6-879\"\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:2169:\"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"><head profile=\"http://gmpg.org/xfn/11\">\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n	<title>WordPress.com &#8212; 503 Error</title>\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n	<link rel=\"stylesheet\" href=\"//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600\" />\n	<link rel=\"stylesheet\" href=\"https://s0.wp.com/error-docs/style.css\" />\n	<script type=\"text/javascript\" src=\"//stats.wp.com/wpcom.js?22\"></script>\n	<script type=\"text/javascript\">\n	_error = \'503\';\n	fzd();\n	</script>\n</head>\n<body>\n	<h1>Whoops!</h1>\n	\n	<div class=\"message\">\n		<p>Something has gone wrong with our servers, and we&#8217;ve just been notified of the problem.</p>\n		<p>This will be fixed as soon as possible, so kindly reload in a minute and things should be back to normal.</p> \n		\n		<footer>\n			<ul class=\"footer-links\">\n				<li><a href=\"javascript:history.back()\">← Go Back</a></li>\n				<li><a href=\"https://support.wordpress.com/\">Support</a></li>\n				<li><a href=\"https://status.automattic.com\">Status</a></li>\n				<li><a href=\"https://twitter.com/wordpressdotcom\">Twitter</a></li>\n			</ul>\n			<a class=\"wordpress-link\" href=\"https://wordpress.com/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"-248 250 14 14\" enable-background=\"new -248 250 14 14\">\n					<path fill=\"#a8bece\" d=\"M-234 257c0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7 7 3.1 7 7zm-9.8 5.7l-3-8.2c-.4.8-.6 1.7-.6 2.6.1 2.4 1.6 4.5 3.6 5.6zm6.6-4c.3-.9.5-1.5.5-2 0-.8-.3-1.3-.5-1.7-.3-.5-.6-1-.6-1.5 0-.6.4-1.1 1.1-1.1h.1c-1.1-1.1-2.7-1.7-4.3-1.6-2.2 0-4.1 1.1-5.3 2.8h.4c.7 0 1.7-.1 1.7-.1.3 0 .4.5 0 .5 0 0-.3 0-.7.1l2.3 6.8 1.4-4.1-.9-2.7h-.6c-.4 0-.3-.5 0-.5 0 0 1 .1 1.7.1s1.7-.1 1.7-.1c.3 0 .3.4 0 .5 0 0-.3 0-.7.1l2.3 6.8.4-2.3zm-1.7 4.2l-2-5.4-1.9 5.5c.6.2 1.2.2 1.8.2.7.1 1.4 0 2.1-.3zm3.5-8.3c0 .6-.1 1.4-.5 2.3l-1.9 5.6c1.9-1.1 3.1-3.2 3.1-5.5 0-1.1-.3-2.1-.8-3 0 .2.1.4.1.6z\"/>\n				</svg>\n			</a>\n		</footer>\n	</div>\n</body>\n</html>\";s:8:\"response\";a:2:{s:4:\"code\";i:502;s:7:\"message\";s:11:\"Bad Gateway\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:0:{}}s:15:\"1708482119.1498\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 21 Feb 2024 02:21:59 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:62:\"Want root?  Visit join.a8c.com/hacker and mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"1\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-ac\";s:17:\"4.den _dfw BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}}","yes");
INSERT INTO 7ja_options VALUES("16104","papro_updated","true","yes");
INSERT INTO 7ja_options VALUES("16123","papro_license_key","ad9167089ea5cb2ef1b1dada428ad070","yes");
INSERT INTO 7ja_options VALUES("16124","papro_license_status","valid","yes");
INSERT INTO 7ja_options VALUES("16234","edd_sl_f04308d9277a5ba27b03362622e0dedd","a:2:{s:7:\"timeout\";i:1709834730;s:5:\"value\";s:139301:\"{\"new_version\":\"2.9.13\",\"stable_version\":\"2.9.13\",\"name\":\"Premium Addons Pro\",\"slug\":\"premium-addons-pro-for-elementor\",\"url\":\"https:\\/\\/my.leap13.com\\/downloads\\/premium-addons-pro-for-elementor\\/?changelog=1\",\"last_updated\":\"2024-03-03 09:43:46\",\"homepage\":\"https:\\/\\/premiumaddons.com\",\"package\":\"https:\\/\\/my.leap13.com\\/edd-sl\\/package_download\\/MTcwOTkxNzUzMDphZDkxNjcwODllYTVjYjJlZjFiMWRhZGE0MjhhZDA3MDozNjE6ZjYwZmM2MTZiNDkzOTMzMmQyYzdkMjEzZDM0ZjgyM2Y6aHR0cHNALy94amsuYW5qLm15Ymx1ZWhvc3QubWU6MA==\",\"download_link\":\"https:\\/\\/my.leap13.com\\/edd-sl\\/package_download\\/MTcwOTkxNzUzMDphZDkxNjcwODllYTVjYjJlZjFiMWRhZGE0MjhhZDA3MDozNjE6ZjYwZmM2MTZiNDkzOTMzMmQyYzdkMjEzZDM0ZjgyM2Y6aHR0cHNALy94amsuYW5qLm15Ymx1ZWhvc3QubWU6MA==\",\"sections\":{\"description\":\"<p>This plugin is an extension to Premium Addons for Elementor Plugin that includes Pro Elementor widgets and Addons for Elementor Page Builder. Visit <a href=\\\"https:\\/\\/www.premiumaddons.com\\/\\\">Premium Addons Website<\\/a> to check widgets and addons demos.<\\/p>\\n<p>Premium Addons PRO plugin\\u2019s widgets are cross browser compatible and also fully responsive, Your website will rock on all browsers as well as tables and mobile devices.<\\/p>\\n<p>When using Premium Addons\\u2019 widgets you will notice that it has more customization options than any other widget in other plugin.<\\/p>\\n<p>Premium Addons PRO can be used only as a complement of Elementor page builder plugin as it\\u2019s not a standalone plugin.<\\/p>\\n<h3>Features<\\/h3>\\n<ul>\\n<li>Fully Customizable Elements.<\\/li>\\n<li>Options panel for enabling desired elements only for faster performance.<\\/li>\\n<li>Free Support through online forums.<\\/li>\\n<\\/ul>\\n<h3>Available Elements<\\/h3>\\n<ol>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">Premium Alert Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/animated-section-gradients-for-elementor-page-builder\\/\\\">Premium Animated Section Gradient<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/behance-feed-widget-for-elementor-page-builder\\/\\\">Premium Behance Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/charts-widget-for-elementor-page-builder\\/\\\">Premium Charts<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/content-switcher-widget-for-elementor-page-builder\\/\\\">Premium Content Switcher<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/dual-header-widget-for-elementor-page-builder\\/\\\">Premium Divider<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-feed-widget-for-elementor-page-builder-2\\/\\\">Premium Facebook Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-messenger-widget-for-elementor-page-builder\\/\\\">Premium Facebook Messenger<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-reviews-widget-for-elementor-page-builder\\/\\\">Premium Facebook Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">Premium Flip Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/google-reviews-for-elementor-page-builder\\/\\\">Premium Google Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/icon-box-widget-for-elementor-page-builder\\/\\\">Premium Icon Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ihover-widget-for-elementor-page-builder\\/\\\">Premium iHover<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-image-accordion-widget\\/\\\">Premium Image Accordion<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-comparison-widget-for-elementor-page-builder\\/\\\">Premium Image Comparison<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-hotspots-widget-for-elementor-page-builder\\/\\\">Premium Image Hotspots<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-layers-widget-for-elementor-page-builder\\/\\\">Premium Image Layers<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/instagram-feed-widget-for-elementor-page-builder\\/\\\">Premium Instagram Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ken-burns-section-addon-for-elementor-page-builder\\/\\\">Premium Ken Burns<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/magic-section-widget-for-elementor-page-builder\\/\\\">Premium Magic Section<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">Premium Multi Scroll<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/parallax-section-addon-for-elementor-page-builder\\/\\\">Premium Parallax<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/particles-section-addon-for-elementor-page-builder\\/\\\">Premium Particles<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/preview-window-widget-for-elementor-page-builder\\/\\\">Premium Preview Window<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/table-widget-for-elementor-page-builder\\/\\\">Premium Tables<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/twitter-feed-widget-for-elementor-page-builder\\/\\\">Premium Twitter Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/tabs-widget-for-elementor-page-builder-2\\/\\\">Premium Tabs<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/unfold-widget-for-elementor-page-builder\\/\\\">Premium Unfold<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/whatsapp-widget-for-elementor-page-builder\\/\\\">Premium WhatsApp Chat<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-yelp-reviews-widget\\/\\\">Premium Yelp Reviews<\\/a><\\/li>\\n<\\/ol>\",\"changelog\":\"<h4> 2.9.13 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Fixed: Off-canvas widget layout broken on RTL sites.<\\/li>\\n<\\/ul>\\n<h4> 2.9.12 <\\/h4>\\n<ul>\\n<li>New: Magic Section widget rebuilt. It\'s now Off-Canvas - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-off-canvas-widget\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Fixed Content Template option in Multi Scroll widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Icon hover styling options not working in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.11 <\\/h4>\\n<ul>\\n<li>New: Added new hover effects to all the buttons all over the plugin - <a href=\\\"https:\\/\\/premiumaddons.com\\/button-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Alert Box widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Social icons not showing in Image Hotspots widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.10 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to apply Particles addon on whole page through Elementor page settings.<\\/li>\\n<li>Tweak: Added responsive controls to Display option in Content Toggle widget.<\\/li>\\n<li>Fixed: Disable Snappy Effect on Touch Devices in Horizontal Scroll widget not working.<\\/li>\\n<li>Fixed: Flickering issue with Image Sequence effect in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.9 <\\/h4>\\n<ul>\\n<li>Tweak: Divider widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/divider-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Option to Disable Scroll on Accordion Item Click added in in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to hide Horizontal Scroll widget slides on desktop devices.<\\/li>\\n<li>Fixed: Unnecessary HTML markup rendered in the table widget.<\\/li>\\n<li>Fixed: Feed is duplicated in Facebook and Behance Feed widgets.<\\/li>\\n<li>Fixed: Facebook and Behance Feed widgets not working on the frontend.<\\/li>\\n<\\/ul>\\n<h4> 2.9.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added SVG Code option in Site Logo widget.<\\/li>\\n<li>Tweak: Gold API error messages handled in News Ticker widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added Option to enable US numbers sorting in Table widget.<\\/li>\\n<li>Tweak: Compatibility between Hide Slide On option in Multi Scroll widget and Elementor custom breakpoints.<\\/li>\\n<\\/ul>\\n<h4> 2.9.5 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error when Premium Addons Pro is activated without the free version.<\\/li>\\n<li>Fixed: Masonry effect not working correctly on editor page in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Custom Navigation Element Selector option in Multi Scroll to be used to navigate to Multi Scroll slides.<\\/li>\\n<li>Fixed: Ratings values between .7 and .9 are rendered as half star in Social Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.9.3 <\\/h4>\\n<ul>\\n<li>Fixed: PHP Error when Image Accordion widget is used.<\\/li>\\n<li>Fixed: Elementor asks to run Safe Mode with Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Alternative Gold API key option in News Ticker widget.<\\/li>\\n<li>Tweak: Added Load More option in Smart Post Listing widget.<\\/li>\\n<li>Tweak: Added more styling controls in Smart Post Listing widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.9.0 <\\/h4>\\n<ul>\\n<li>New: Added Smart Post Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-smart-post-listing-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Show Alt text for the images in Ken Burns addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.27 <\\/h4>\\n<ul>\\n<li>Fixed: Twitter Feed widget not working.<\\/li>\\n<\\/ul>\\n<h4> 2.8.26 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Numbers showing on hover not formatted in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.25 <\\/h4>\\n<ul>\\n<li>Tweak: Removed Twitter Feed credentials section.<\\/li>\\n<\\/ul>\\n<h4> 2.8.24 <\\/h4>\\n<ul>\\n<li>Tweak: Added custom position options for tooltips in Image Hotspots widget.<\\/li>\\n<li>Fixed: Multi Scroll widget not working when elements with entrance animations used in it.<\\/li>\\n<li>Fixed: Twitter Feed widget not working in some cases.<\\/li>\\n<li>Fixed: Image Comparison widget handle not working on RTL sites.<\\/li>\\n<\\/ul>\\n<h4> 2.8.23 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching options in Facebook and Behance Feed widgets.<\\/li>\\n<li>Tweak: Multi Scroll widget improved to trigger entrance animations on slide change.<\\/li>\\n<li>Fixed: Button showing in back side in 3D Hover Box widget.<\\/li>\\n<li>Fixed: Horizontal Scroll issues on mobile devices.<\\/li>\\n<li>Fixed: Hide Empty Reviews option not working correctly in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.22 <\\/h4>\\n<ul>\\n<li>Tweak: Added custom size unit for range controls in some widgets.<\\/li>\\n<li>Tweak: Load posts only if they have body text in Facebook Feed widget.<\\/li>\\n<li>Fixed: Load Chart On option not working in Charts widget.<\\/li>\\n<li>Fixed: Fatal error in Tabs widget when an image icon with empty image is added.<\\/li>\\n<\\/ul>\\n<h4> 2.8.21 <\\/h4>\\n<ul>\\n<li>New: Added Magnet Effect in Custom Mouse Cursor addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-feature\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Magic Scroll addon performance improved.<\\/li>\\n<\\/ul>\\n<h4> 2.8.20 <\\/h4>\\n<ul>\\n<li>Tweak: CSS files size minimized for better performance.<\\/li>\\n<li>Fixed: Custom link attributes not working in Icon Box widget.<\\/li>\\n<li>Fixed: Console error in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.19 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to load Magic Scroll addon on page load, not when the section is reached.<\\/li>\\n<li>Fixed: Image Comparison widget not working when used inside Tabs widget.<\\/li>\\n<li>Fixed: Lock Page Scroll option in Magic Scroll addon causing a blank area while scrolling on mobile devices.<\\/li>\\n<li>Fixed: PHP warning in Parallax addon when no layers are added.<\\/li>\\n<li>Fixed: Console error with Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.18 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text Shadow and Box Shadow scroll effects in Magic Scroll addon.<\\/li>\\n<li>Tweak: Added Sort Reviews by date option in Google Reviews widget.<\\/li>\\n<li>Tweak: Show\\/hide images by hashtags in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.17 <\\/h4>\\n<ul>\\n<li>Tweak: Sticky effect behavior improved in Magic Scroll addon.<\\/li>\\n<li>Tweak: Added option to trigger entrance animations once for Snappy scroll in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Sticky effect not working on the editor page in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.16 <\\/h4>\\n<ul>\\n<li>Fixed: Draw SVG not working on the editor page with multiple SVGs in Magic Scroll addon.<\\/li>\\n<li>Fixed: Transition is added to Icon Box widget when used with Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.15 <\\/h4>\\n<ul>\\n<li>Fixed: Elements with entrance animation flash in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Icons not showing in some controls.<\\/li>\\n<\\/ul>\\n<h4> 2.8.14 <\\/h4>\\n<ul>\\n<li>New: Added Magic Scroll addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-magic-scroll-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.8.13 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.8.0<\\/li>\\n<li>Fixed: Ken Burns section\\/column addon not working with recent Elementor versions.<\\/li>\\n<\\/ul>\\n<h4> 2.8.12 <\\/h4>\\n<ul>\\n<li>New: Added Site Logo widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-site-logo-widget\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.8.11 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option in Instagram Feed widget to improve the feed performance and loading speed.<\\/li>\\n<li>Tweak: Added Close On Click Outside option in Magic Section widget.<\\/li>\\n<li>Fixed: Icon styling not applied properly on SVG icons in Divider widget.<\\/li>\\n<li>Fixed: Mouse tilt option not working since Premium Addons for Elementor v4.9.35.<\\/li>\\n<li>Fixed: Feed is not showing if Posts\\/Account option value is larger than the posts returned by Facebook.<\\/li>\\n<li>Fixed: Alignment option not working properly for multi-line values in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.10 <\\/h4>\\n<ul>\\n<li>New: Added Random Badges option in Mega Menu widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-mega-menu-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: PHP warnings in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.9 <\\/h4>\\n<ul>\\n<li>Fixed: Console error when SVG Draw option is disabled for Parallax addon.<\\/li>\\n<li>Fixed: SVG Draw option not working for Font Awesome icons in Icon Box widget.<\\/li>\\n<li>Fixed: Applying global background colors not working in Magic Section widget.<\\/li>\\n<li>Fixed: Icon color applied on Lottie animation in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.8 <\\/h4>\\n<ul>\\n<li>Tweak: Behance Feed widget now loads feed on scroll, not on page load.<\\/li>\\n<li>Fixed: PHP warning after v2.8.7.<\\/li>\\n<\\/ul>\\n<h4> 2.8.7 <\\/h4>\\n<ul>\\n<li>Tweak: Make sure Custom Mouse Cursor addon JS files are loaded only if the addon is used on a page.<\\/li>\\n<li>Fixed: Navigation Arrows\\/Dots not working properly on touch devices in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.6 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error due to Image Accordion widget since v2.8.4.<\\/li>\\n<\\/ul>\\n<h4> 2.8.5 <\\/h4>\\n<ul>\\n<li>Fixed: Icons in Icon Box widget always dissappear if Draw SVG option is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.8.4 <\\/h4>\\n<ul>\\n<li>New: Added Draw Icon option in all widgets that has Icon option in them.<\\/li>\\n<li>Tweak: Added Horizontal\\/Vertical Alignment options for multi-layers in Parallax addon.<\\/li>\\n<li>Fixed: Conflict between Custom Mouse Cursor addon and WP Rocket Defer JS files option.<\\/li>\\n<\\/ul>\\n<h4> 2.8.3 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.7.0.<\\/li>\\n<li>Fixed: Freehand Positioning feature not working when the device mode is changed in the editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.8.2 <\\/h4>\\n<ul>\\n<li>Tweak: Facebook Feed widget styling improved for RTL sites.<\\/li>\\n<li>Fixed: Conflict with Elementor Pro templates.<\\/li>\\n<li>Fixed: Even layout not working with Carousel Infinite Autoplay in social reviews widgets.<\\/li>\\n<li>Fixed: Carousel Navigation Arrows color\\/size controls not working in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.1 <\\/h4>\\n<ul>\\n<li>Fixed: PHP warning since v2.8.0<\\/li>\\n<\\/ul>\\n<h4> 2.8.0 <\\/h4>\\n<ul>\\n<li>Tweak: Apply Custom Mouse Cursor on full page or the entire website - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-feature\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added responsive controls to Number of Columns option in Behance Feed widget.<\\/li>\\n<li>Fixed: Carousel Tabs option applied on nested tabs.<\\/li>\\n<li>Fixed: Unnecessay Elementor placeholder images added to the Media Library after importing templates.<\\/li>\\n<li>Fixed: Multi Scroll widget not working with Elementor custom breakpoints.<\\/li>\\n<li>Fixed: Ken Burns addon not showing images properly on small screens.<\\/li>\\n<li>Fixed: Hover Box widget not working properly on iOS devices.<\\/li>\\n<\\/ul>\\n<h4> 2.7.9 <\\/h4>\\n<ul>\\n<li>Tweak: Add responsive controls for image control in Ken Burns section\\/column addon.<\\/li>\\n<li>Fixed: Horizontal\\/Vertical Offset option not working for social icon in all Social Reviews widgets.<\\/li>\\n<li>Fixed: Horizontal Offset and z-index options not working for Fixed Content template in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Console error in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.8 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements for better performance and loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.7.7 <\\/h4>\\n<ul>\\n<li>Tweak: Load Custom Mouse Cursor addon when the element is visible on viewport to improve performance and page loading speed.<\\/li>\\n<li>Tweak: Added Cover Image size option in Behance Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.6 <\\/h4>\\n<ul>\\n<li>Tweak: Add Mask Image option in Image Layers widget.<\\/li>\\n<li>Tweak: Add Render As SVG\\/Canvas option for Lottie Animation icons in Hover Box widget.<\\/li>\\n<li>Tweak: HTML markup optimized for Image Hotspots and Twitter Feed widgets for better performance.<\\/li>\\n<li>Fixed: Accordion Tabs option not working in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.5 <\\/h4>\\n<ul>\\n<li>New: Added URL String, Shortcode and WooCommerce Products in Cart options in Display Conditions.<\\/li>\\n<li>Tweak: HTML markup optimized for Hover Box, Image Accordion, Instagram Feed, Tabs, Unfold widgets for better performance.<\\/li>\\n<li>Tweak: Added Disable Floating Effects on Safari option in widgets have floating effects.<\\/li>\\n<li>Tweak: Trigger Particles and Badge addons JS code when visible on viewport to improve page loading speed.<\\/li>\\n<li>Tweak: Added compatibility Charts and Horizontal Scroll widgets.<\\/li>\\n<li>Fixed: Change Colors As Gradient option not working in Background Transition widget.<\\/li>\\n<li>Fixed: Profile Header image not showing properly on small devices in Twitter Feed widget.<\\/li>\\n<li>Fixed: Right Side Template option not showing in Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility between Badge Global Addon and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Horizontal Scroll jiterring issue on touch devices.<\\/li>\\n<\\/ul>\\n<h4> 2.7.3 <\\/h4>\\n<ul>\\n<li>New: Added Create\\/Edit Live Templates feature in all widgets that support Elementor Templates.<\\/li>\\n<\\/ul>\\n<h4> 2.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for future features compatibility<\\/li>\\n<li>Fixed: Button Trigger Size option not working on frontend in Magic Section widget.<\\/li>\\n<li>Fixed: Alignment issue in Icon Box widget when description is short.<\\/li>\\n<li>Fixed: Invalid CSS added in the editor when Badge Addon is enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.7.1 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error with some PHP versions after v2.7.0<\\/li>\\n<\\/ul>\\n<h4> 2.7.0 <\\/h4>\\n<ul>\\n<li>New: Added Premium Badge global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-badge-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: HTML markup optimized for Table widget for better performance.<\\/li>\\n<li>Tweak: Added Icon Color and Text Color\\/Typography options for each repeater cell in Table widget.<\\/li>\\n<li>Fixed: Hover Color and Padding options not working for Read More link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.8 <\\/h4>\\n<ul>\\n<li>New: Added five new skins in Elementor WooCommerce Products Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-woocommerce-products\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added compatibility between section\\/column addons and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Widgets code refactored to improve performance and loading speed.<\\/li>\\n<li>Tweak: Added Hover Box Shadow option in Lottie Animation section addon.<\\/li>\\n<li>Fixed: PHP warning when Follow Delay option value is not set in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: Image with Size option set to custom not rendered in Image Layers and Icon Box widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.6.7 <\\/h4>\\n<ul>\\n<li>New: Added Custom Mouse Cursor global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-feature\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Auto Change Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: HTML markup for images in Icon Box widget.<\\/li>\\n<li>Tweak: Make sure images in Image Layers and Tabs widgets are lazyloaded to improve loading speed.<\\/li>\\n<li>Fixed: Section\\/Column addons not working on editor when used inside widgets using Elementor templates.<\\/li>\\n<\\/ul>\\n<h4> 2.6.6 <\\/h4>\\n<ul>\\n<li>Fixed: Box shadow and Background Color options overriden by default values in CSS in Preview Window widget.<\\/li>\\n<li>Fixed: Charts widget not working in some cases inside Tabs widget.<\\/li>\\n<li>Fixed: Animated Gradient and Blob Generator addons not working in Tabs widget.<\\/li>\\n<li>Fixed: Ken Burns addon Infinite option always disabled when the editor page is reloaded.<\\/li>\\n<\\/ul>\\n<h4> 2.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load the main CSS file only when required.<\\/li>\\n<li>Fixed: Tabs widget not working properly with some themes.<\\/li>\\n<li>Fixed: Compatibility between Carousel option in Social Reviews widgets and RTL sites.<\\/li>\\n<li>Fixed: Keyboard Scrolling still works even when the control is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.5.0.<\\/li>\\n<\\/ul>\\n<h4> 2.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added options to control Scroll Offset for each section individually in Color Transition widget.<\\/li>\\n<li>Tweak: Javascript loading method improved for Animated Gradient, Particles section\\/column addons for better performance.<\\/li>\\n<li>Fixed: Styling options not working for SVG icons in Magic Section widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added WooCommerce Total Amount In Cart and Current Product Stock options in Display Conditions feature.<\\/li>\\n<li>Fixed: Console error when videos are inserted in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.1 <\\/h4>\\n<ul>\\n<li>Fixed: Undefined variable $dir_class in Image Layers widget when Text option is used.<\\/li>\\n<li>Fixed: Button Size option not working in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.0 <\\/h4>\\n<ul>\\n<li>New: Added Animated Blob Generator section addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-animated-blob-generator\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Radar Style option in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added div, p and span HTML tag options for heading in Hover Box widget.<\\/li>\\n<li>Fixed: Default icon size changed in Hover Box widget.<\\/li>\\n<li>Fixed: Background Color not changing when multiple Background Transition widgets are used on the same page.<\\/li>\\n<\\/ul>\\n<h4> 2.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Background is not changed on scroll up in Background Transition widget.<\\/li>\\n<li>Fixed: Nested tabs styling overwrite issue in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Tabs widget rebuilt for better usability and editing experience.<\\/li>\\n<li>Tweak: Control number of carousel slides to show in Instagram Feed widget.<\\/li>\\n<li>Tweak: Prevent Background Transition widget from changing color when up\\/down backgrounds are the same.<\\/li>\\n<li>Fixed: Line height not working for Business\\/Place Name, Reviewer Name and Review Text in Social Reviews widgets.<\\/li>\\n<li>Fixed: Entrance Animations not working on for the first in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Tabs widget not working when shortcodes are used in tabs content.<\\/li>\\n<\\/ul>\\n<h4> 2.5.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Heroes Flying-Left effect in iHover widget.<\\/li>\\n<li>Tweak: Remove any duplicate content when Accordion Tabs option is enabled in Tabs widget.<\\/li>\\n<li>Tweak: Added Tab ID option in Tabs widget.<\\/li>\\n<li>Fixed: Animation issues for Flash Rotation, Flip Door, and Magic Door effects in iHover widget.<\\/li>\\n<li>Fixed: Charts not working on the editor page on Chrome browser.<\\/li>\\n<li>Fixed: Color option not applied on links in Table widget when CSV file is used.<\\/li>\\n<\\/ul>\\n<h4> 2.5.2 <\\/h4>\\n<ul>\\n<li>Tweak: Save all the plugin settings on change without need to click &quot;Save Settings&quot; button.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.4.<\\/li>\\n<li>Fixed: Snappy scroll stability issues in Horizontal Scroll issues.<\\/li>\\n<li>Fixed: Compatibility issues between Elementor custom breakpoints and Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: iHover widget code refactored for faster editing speed..<\\/li>\\n<li>Tweak: Added Image Hover Effect in Image Layers widget.<\\/li>\\n<li>Tweak: Added compatibility between Multiscroll widget and sticky headers.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Premium Particles not working on some devices in editor page.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Content is not fully rendered issue in Unfold widget.<\\/li>\\n<li>Fixed: Removed Unnecessary requests made in Instagram Feed widget.<\\/li>\\n<li>Fixed: Hide Slide On and Disable Horizontal Scroll On options not working togethr in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Carousel not working in Facebook Feed widget when <code>Only Show Admin Posts<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Fold Height option not working when set to <code>0<\\/code> in Unfold widget.<\\/li>\\n<li>Fixed: Console error in Multi Scroll widget.<\\/li>\\n<li>Fixed: Admin notices not showing when Premium Addons for Elementor is not installed.<\\/li>\\n<\\/ul>\\n<h4> 2.5.0 <\\/h4>\\n<ul>\\n<li>Tweak: JS code refactored for better performance and faster editing speed.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.2.<\\/li>\\n<li>Fixed: Emojis not showing in Twitter Feed widget.<\\/li>\\n<li>Fixed: Slides overlapping issue on touch devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Image Hotspots colors not working in editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.4.9 <\\/h4>\\n<ul>\\n<li>New: Added Advanced Border Radius option to improve the normal Border Radius option - <a href=\\\"https:\\/\\/9elements.github.io\\/fancy-border-radius\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Particles overlapping issue when browser active tab is changed.<\\/li>\\n<li>Fixed: Alignment controls icons not showing in editor panel.<\\/li>\\n<li>Fixed: Tabs widget style conflict with LearnDash plugin.<\\/li>\\n<\\/ul>\\n<h4> 2.4.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to control <code>Based on Number of Reviews<\\/code> string in all social reviews widgets.<\\/li>\\n<li>Fixed: Expired access token is not refreshed in Instagram Feed widget.<\\/li>\\n<li>Fixed: Image appears before entrance animation starts in Image Layers widget.<\\/li>\\n<li>Fixed: Facebook Feed widget conflict with Complianz | GDPR\\/CCPA Cookie Consent plugin.<\\/li>\\n<li>Fixed: Pagination not working in the editor in Table widget.<\\/li>\\n<li>Fixed: Tabs widget conflict with some themes.<\\/li>\\n<\\/ul>\\n<h4> 2.4.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Change Tabs to Accordion On Small Screens<\\/code> option in Tabs widget.<\\/li>\\n<li>Tweak: Improved compatibility with Elementor new version.<\\/li>\\n<\\/ul>\\n<h4> 2.4.6 <\\/h4>\\n<ul>\\n<li>Tweak: Improved Social Reviews widgets compatibility for RTL sites.<\\/li>\\n<li>Tweak: Improved WPML compatibility with all widgets.<\\/li>\\n<li>Tweak: Added Icon Spacing option in Unfold widget.<\\/li>\\n<li>Fixed: SVGs icons not showing on button in Unfold widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.5 <\\/h4>\\n<ul>\\n<li>Fixed: Code improvements for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.4.4 <\\/h4>\\n<ul>\\n<li>Fixed: Console error in Parallax addon issue.<\\/li>\\n<\\/ul>\\n<h4> 2.4.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Infinite Autoplay for carousel in social reviews widgets.<\\/li>\\n<li>Tweak: Added Navigation Type Dots\\/Arrows option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Show Number of Reviews option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Put Place\\/Business Info next to reviews option in social reviews widgets.<\\/li>\\n<li>Fixed: Console error <code>$ is not defined<\\/code> since v2.4.2.<\\/li>\\n<\\/ul>\\n<h4> 2.4.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Clear Cached Data button to Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Tweak: Added Carousel Arrows option for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Snap Scroll improved in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.1 <\\/h4>\\n<ul>\\n<li>Fixed: Horizontal Scroll slides anchoring not working since v2.4.0<\\/li>\\n<li>Fixed: Lightbox option issue in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.0 <\\/h4>\\n<ul>\\n<li>Tweak: Feed Media Height control added to work all time in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Section\\/Column addons code refactored to improve editing speed.<\\/li>\\n<\\/ul>\\n<h4> 2.3.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added Hovered Image Width control option in Image Accordion widget.<\\/li>\\n<li>Tweak: Javascript Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Lottie Animation icon size option not working on Chrome in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added Spacing Color option in Image Accordion widget.<\\/li>\\n<li>Fixed: Horizontal Scroll anchor links not working with Elementor popups.<\\/li>\\n<li>Fixed: Images Spacing option not working with horizontal direction in Image Accordion widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Minimal Mask effect for Text in Image Layers widget.<\\/li>\\n<li>Tweak: Added Image Spacing option in Image Accordion widget.<\\/li>\\n<li>Fixed: Icon Color option not applied on SVGs in all widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.3.6 <\\/h4>\\n<ul>\\n<li>Fixed: Hide Section option not working after v2.3.5 in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added Disable Horizontal Scroll On Tablet\\/Mobile devices option in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added Wave Effect option in Animated Gradient add-on.<\\/li>\\n<li>Tweak: Added Change Legend to Circles option in Charts widget.<\\/li>\\n<li>Tweak: Added Maximum Height control in Magic Section.<\\/li>\\n<li>Fixed: Equal Height option not working when Carousel is enabled in Social Feed and Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.3.4 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Live Search option shows results only from current page in Table widget.<\\/li>\\n<li>Fixed: Icon Hover Animation not working with Whole Box Link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Pull Data from CSV file in Charts widget.<\\/li>\\n<li>Fixed: Some Particles effects not working.<\\/li>\\n<li>Fixed: Template style is rendered in Content Toggle widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Lottie Animations, Icon and Text Trigger options in Preview Window widget.<\\/li>\\n<li>Tweak: Added Show\\/Hide Reviewer Image option in Social Reviews widgets.<\\/li>\\n<li>Tweak: Added Show\\/Hide Place Rating Stars option in Social Reviews widgets.<\\/li>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.3.1 <\\/h4>\\n<ul>\\n<li>Tweak: Compatibility with Elementor PRO 3.2.0.<\\/li>\\n<\\/ul>\\n<h4> 2.3.0 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and faster editor loading.<\\/li>\\n<li>Tweak: Font Awesome 5 compatibility for Magic Section widget.<\\/li>\\n<li>Tweak: Added option to enable cookies for logged in users in Alert Box widget.<\\/li>\\n<li>Tweak: Added Hover Image option in Preview Window widget.<\\/li>\\n<li>Tweak: Added responsive controls for Fold Height and Fade Height options in Unfold widget.<\\/li>\\n<li>Tweak: Added Icon Spacing option for Link in Icon Box widget.<\\/li>\\n<li>Fixed: Icon Spacing not working on RTL sites in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Tooltips height issue in Image Hotspots widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to hide specific sections on different devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Content alignment responsive controls not working in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.8 <\\/h4>\\n<ul>\\n<li>New: Apply Animated Gradient, Ken Burns, Parallax and Particles add-on on columns.<\\/li>\\n<li>Fixed: Global Colors not working for Animated Gradient add-on.<\\/li>\\n<li>Fixed: Spinner effect text link not working in iHover widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text option in Image Layers widget.<\\/li>\\n<li>Tweak: Code refactored for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added Show Admin Posts Only option in Facebook Feed widget.<\\/li>\\n<li>Tweak: Added Data Format Locale option to format numbers in Charts widget.<\\/li>\\n<li>Tweak: Number formatting in Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added Horizontal Scroll Parallax option in Parallax Section add-on.<\\/li>\\n<li>Tweak: Added Profile Header and Tweet Information options in Twitter Feed widget.<\\/li>\\n<li>Tweak: Added Cube effect in Hover Box widget.<\\/li>\\n<li>Tweak: Added Profile Header in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Feed Share button in Instagram Feed widget.<\\/li>\\n<li>Tweak: WPML Compatibility for Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Reload data every Minute option changed to Five Minutes to prevent API block in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Show\\/Hide Profile Name and Feed Content option in Facebook\\/Twitter Feed widget.<\\/li>\\n<li>Tweak: Added Feed Media Image Height option in Facebook\\/Twitter Feed widget.<\\/li>\\n<li>Tweak: Added CSS ID option for hotspots in Image Hotspots widget.<\\/li>\\n<li>Fixed: All RTL issues in Facebook\\/Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Custom Navigation option to Tabs widget.<\\/li>\\n<li>Tweak: Added Back To Initial Position for Parallax Mouse Interactivity in Image Layers widget.<\\/li>\\n<li>Fixed: Icon Spacing option not working when direction option is set to RTL in Table widget.<\\/li>\\n<li>Fixed: Google Sheets not working in Table widget.<\\/li>\\n<li>Fixed: Left Margin\\/Padding option not working for Title\\/Link in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.2 <\\/h4>\\n<ul>\\n<li>Tweak: Now you can load more than 25 feed posts in Instagram Feed widget.<\\/li>\\n<li>Fixed: Google Sheets not working in Table widget.<\\/li>\\n<li>Fixed: Carousel swipes in opposite direction in all social feed\\/reviews widgets.<\\/li>\\n<li>Fixed: Duplicated Premium Addons icon in section add-ons after WordPress v5.6.<\\/li>\\n<\\/ul>\\n<h4> 2.2.1 <\\/h4>\\n<ul>\\n<li>Fixed: Description not showing issue in Icon Box widget.<\\/li>\\n<li>Fixed: Font Awesome icons not showing in Image Hotspots widget.<\\/li>\\n<li>Fixed: Inline editing not working for content in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added two new styles to Hover Box widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Carousel option in Facebook\\/Instagram Feed widgets.<\\/li>\\n<li>Tweak: Added Equal Height option in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Added Lottie Animation Icon option in Tabs widget.<\\/li>\\n<li>Tweak: Added Whole Box Link and Link Position options in Icon Box widget.<\\/li>\\n<li>Tweak: Added responsive controls for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added slides spacing for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added Rotate option to back icon in Icon Box widget.<\\/li>\\n<li>Tweak: Hotspots Image render function code refactored to improve for site performance.<\\/li>\\n<li>Tweak: Removed API Key option in Behance Feed widget.<\\/li>\\n<li>Fixed: List layout width issue in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Fixed: Multi Scroll widget console error with some themes.<\\/li>\\n<li>Fixed: Horizontal Scroll widget issues on browser window resize.<\\/li>\\n<li>Fixed: Tabs widget spacing issues on small screens.<\\/li>\\n<li>Fixed: Default padding given to content in Content Toggle widget.<\\/li>\\n<li>Fixed: Widgets Badge White Labeling option not working.<\\/li>\\n<li>Fixed: Warning <code>Trying to access array offset on value of type null<\\/code> when Navigation Arrows option is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.1.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added WPML Compatibility for Table widget.<\\/li>\\n<li>Fixed: Bounce image issue in Parallax section addon.<\\/li>\\n<li>Fixed: Font Awesome icons not showing in social feed widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.1.3 <\\/h4>\\n<ul>\\n<li>Tweak: Alt attribute is now reading from Media library for images in Image Layers widget.<\\/li>\\n<li>Tweak: Unnecessary code removed for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text Editor\\/Template Content Type option in Unfold widget.<\\/li>\\n<li>Tweak: Added Interactive option for tooltips in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added File Source (URL\\/File Upload) option in Lottie Animations section add-on.<\\/li>\\n<li>Fixed: Images Alt attribute not added in multi-layered Parallax add-on.<\\/li>\\n<li>Fixed: Images stretch issue in Image Comparison widget.<\\/li>\\n<li>Fixed: Handle not moving in RTL sites issue in Image Comparison widget.<\\/li>\\n<li>Fixed: Responsive controls for section background not applied on Parallax add-on.<\\/li>\\n<li>Fixed: Custom Data table not pulling data after the file URL is changed in Table widget.<\\/li>\\n<li>Fixed: Instagram video not showing in RTL sites in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added new skin Cards in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Tweak: Added Maximum Words Number option for image caption in Instagram Feed widget.<\\/li>\\n<li>Fixed: Icon Color option not applied on SVGs in Tabs widget.<\\/li>\\n<li>Fixed: Place\\/Page avatar alignment issue on Twenty Twenty theme in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.1.0 <\\/h4>\\n<ul>\\n<li>Fixed: Icon Spacing option not working on RTL sites in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Icon Spacing option not working when Icon Position is set to After in Magic Section widget.<\\/li>\\n<li>Fixed: Freehand design option not working in Image Layers, Hotspots and Parallax section add-on after Elementor 3.0.0.<\\/li>\\n<li>Fixed: Page update button is disabled after using Freehand position\\/resize feature.<\\/li>\\n<\\/ul>\\n<h4> 2.0.9 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.0.0.<\\/li>\\n<li>Fixed: Particles add-on appears below section in RTL sites issue.<\\/li>\\n<li>Fixed: Undefined \'open_graph_story\' in Facebook Reviews widget.<\\/li>\\n<li>Fixed: Icon Size option not working with SVG icons in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.8 <\\/h4>\\n<ul>\\n<li>Tweak: Add different color to each dataset value in bar Chart widget.<\\/li>\\n<li>Fixed: WhatsApp Chat widget group option not working on mobile devices.<\\/li>\\n<li>Fixed: Hotspots Horizontal Position option not working for RTL sites in Image Hotspots widget.<\\/li>\\n<li>Fixed: Compatibility issues with WordPress 5.5.<\\/li>\\n<\\/ul>\\n<h4> 2.0.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Change Colors As Gradient option in Background Transition widget.<\\/li>\\n<li>Tweak: API Version updated for Facebook Reviews\\/Feed widgets.<\\/li>\\n<li>Fixed: Filter by Tags option letter case sensitive in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option for remote CSV files in Table widget.<\\/li>\\n<li>Tweak: Added Filter by Tags option in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: Instagram deprecated API replaced with Facebook API in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Color options for feed links in Twitter\\/Facebook Feed widgets.<\\/li>\\n<li>Tweak: Added Background Color, Margin and Padding option for readmore link in Twitter\\/Facebook Feed widgets.<\\/li>\\n<li>Fixed: Widgets with entrance animations not showing on tablet\\/mobile devices in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.4 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Instagram Feed widget now supports Instagram videos.<\\/li>\\n<li>Tweak: Added RTL Mode option in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added Image icon option in Tabs widget.<\\/li>\\n<li>Tweak: Added Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added Change Readmore text option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Render Type option in Lottie Animations section add-on.<\\/li>\\n<li>Tweak: Added Speed option in Flip Box widget.<\\/li>\\n<li>Fixed: Facebook Feed widget date not showing in Safari.<\\/li>\\n<li>Fixed: Social reviews carousel issue in RTL sites.<\\/li>\\n<li>Fixed: Vertical Image Comparison widget not working when label option is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fixed: Section add-on and some widgets not working since v2.0.2<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fixed: Section add-on and some widgets not working since v2.0.2<\\/li>\\n<\\/ul>\\n<h4> 2.0.2 <\\/h4>\\n<ul>\\n<li>Fixed: Image Layers scroll effects not working since v2.0.0<\\/li>\\n<li>Fixed: Premium Lottie section add-on editor overloading issue.<\\/li>\\n<li>Fixed: WhatsApp button not working on iOS mobile devices.<\\/li>\\n<\\/ul>\\n<h4> 2.0.1 <\\/h4>\\n<ul>\\n<li>Fixed: Freehand positioning conflict in Lottie Animations section add-on.<\\/li>\\n<li>Fixed: Entrance animation duplicate issue in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.0 <\\/h4>\\n<ul>\\n<li>New: Introducing Lottie Animations Integration for all the widgets including icon options.<\\/li>\\n<li>New: Added Premium Lottie Animations Section Add-on.<\\/li>\\n<li>Tweak: Added Overlay Background option to Alert Box widget.<\\/li>\\n<li>Tweak: Added Default Tab Index option to Tabs widget.<\\/li>\\n<li>Tweak: Added Border Radius option for button in Content Switcher widget.<\\/li>\\n<li>Tweak: Added Show\\/hide layers on different devices option in Parallax Add-on multi layers.<\\/li>\\n<li>Tweak: Added Floating Effects in Image Hotspots and Preview Window widgets.<\\/li>\\n<li>Fixed: Horizontal Scroll not scrolling below last slide on Snappy effect.<\\/li>\\n<li>Fixed: Widgets masonry layout issues on the editor on Chrome browser.<\\/li>\\n<li>Fixed: Table widget responsive option not working on tablets.<\\/li>\\n<li>Fixed: Instagram Feed new API not working for logged out users.<\\/li>\\n<li>Fixed: Instagram login button not working when Facebook Reviews widget is disabled.<\\/li>\\n<li>Fixed: Conflict with Pinpoint Booking System Plugin shortcodes.<\\/li>\\n<li>Fixed: Multi Scroll widget Left\\/Right Section Width option override previous widgets.<\\/li>\\n<li>Fixed: PHP error <code>Trying to access array offer on value of type bool<\\/code> in \\/white-label\\/admin.php.<\\/li>\\n<li>Fixed: Console error <code>jQuery is not defined<\\/code> in Image Hotspots widget.<\\/li>\\n<li>Fixed: Compatibility errors with PHP v7.0<\\/li>\\n<\\/ul>\\n<h4> 1.9.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added new API options for Instagram Feed widget.<\\/li>\\n<li>Fixed: Horizontal Scroll widget not working on RTL sites.<\\/li>\\n<li>Fixed: Opacity floating effect now working in Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Hover Text\\/Icon Color option for Trigger Button in Magic Section widget.<\\/li>\\n<li>Tweak: Added Opacity to Float Effects in Image Layers widget.<\\/li>\\n<li>Tweak: Change &quot;Read More&quot; link text option added in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Added <code>Mouse Tilt<\\/code> option in Icon Box widget.<\\/li>\\n<li>Tweak: Get \'alt\' attribute for images in iHover widget.<\\/li>\\n<li>Fixed: Dynamic links not working for some elements.<\\/li>\\n<li>Fixed: Warning <code>Trying to access array offset on value of type bool<\\/code> in section add-ons.<\\/li>\\n<\\/ul>\\n<h4> 1.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for dynamic fields in all social media widgets.<\\/li>\\n<li>Fixed: Scrolling issues in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Console error <code>ReferenceError: module is not defined<\\/code><\\/li>\\n<\\/ul>\\n<h4> 1.9.0 <\\/h4>\\n<ul>\\n<li>New: Added Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added <code>Animation Duration<\\/code> option in Animated Gradient section add-on.<\\/li>\\n<li>Tweak: Added Chinese to Language option for Facebook Messenger Chat widget.<\\/li>\\n<li>Tweak: Added <code>Whole Box Link<\\/code> option in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Load Chart on Scroll\\/Page Load<\\/code> option in Charts widget.<\\/li>\\n<li>Tweak: Added <code>Animation Duration<\\/code> option in Charts widget.<\\/li>\\n<li>Fixed: Filters by rating not working properly when review rating is not set in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.8 <\\/h4>\\n<ul>\\n<li>Tweak: Improved <code>Filter By Language<\\/code> option in Google Reviews widget.<\\/li>\\n<li>Fixed: Spacings not applied on tooltips templates in Image Hotspots widget.<\\/li>\\n<li>Fixed: Colors applied on <code>Whole Box Link<\\/code> in iHover widget.<\\/li>\\n<li>Fixed: Rating Schema in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Pagination<\\/code> options in Table widget.<\\/li>\\n<li>Tweak: Added <code>Carousel<\\/code> options in Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.6 <\\/h4>\\n<ul>\\n<li>Tweak: Now, you can remove all header cells in Table widget.<\\/li>\\n<li>Tweak: Added <code>Hover Text Animation<\\/code> switcher option in Flip Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added new effects for Ken Burns add-on.<\\/li>\\n<li>Tweak: Added <code>Reverse Direction<\\/code> for mousemove parallax in Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Link<\\/code> option for header cells in Table widget.<\\/li>\\n<li>Fixed: <code>Transition Speed<\\/code> option not working in Ken Burns section add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.8.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Padding<\\/code> option for container in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Blend Mode<\\/code> option to iHover, Image Hotspots and Image Layers widgets.<\\/li>\\n<li>Tweak: Added <code>Filter by Tags<\\/code> option to Instagram Feed widget.<\\/li>\\n<li>Fixed: Lightbox not working in Instagram Feed widget.<\\/li>\\n<li>Fixed: Console errors on IE due to Background Transition widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Floating Effects<\\/code> to Image Layers widget.<\\/li>\\n<li>Tweak: Added <code>Zoom In\\/Out<\\/code> option for each layer in Ken Burns add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.8.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added four new effects to Flip Box widget.<\\/li>\\n<li>Tweak: 3D flip effect animation enhanced in Flip Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.9 <\\/h4>\\n<ul>\\n<li>Tweak: Now you can set different style to each hotspot item in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added link option for Button in Alert Box widget.<\\/li>\\n<li>Tweak: Added Hover Background Color option Alert Box widget.<\\/li>\\n<li>Fixed: Not all ratings are pulled in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added Spinner styling option for loading spinner in Instagram Feed widget.<\\/li>\\n<li>Fixed: <code>$<\\/code> is not defined in Facebook Reviews and Feed widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.7.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Button<\\/code> option to iHover widget.<\\/li>\\n<li>Tweak: Added <code>Hide Plugin Row Meta<\\/code> and <code>Hide Plugin Changelog Link<\\/code> to plugin White Labeling options.<\\/li>\\n<li>Fixed: Background Transition widget not working with <code>RGB<\\/code> colors.<\\/li>\\n<li>Fixed: Console errors with invalid sections CSS IDs in Background Transition widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>CSS Filter<\\/code> for normal\\/hover state in Image Hotspots widget.<\\/li>\\n<li>Fixed: Grey line appears by default in Image Layers widget.<\\/li>\\n<li>Fixed: Even Layout not working with Carousel option enabled in all Reviews widgets.<\\/li>\\n<li>Fixed: Carousel slides not appearing on RTL sites in all Reviews widgets.<\\/li>\\n<li>Fixed: SVG icons size option not working in all widgets.<\\/li>\\n<li>Fixed: Link title and icon are not aligned in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.5 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Background Transition widget improved.<\\/li>\\n<li>Fixed: Caching is not applied on place data in Yelp Reviews widget.<\\/li>\\n<li>Fixed: Nested Premium Tabs not appearing.<\\/li>\\n<li>Fixed: Active Tab box shadow option not applied on the same selector in normal\\/hover in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option <code>Reload Reviews Once Every<\\/code> in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.7.3 <\\/h4>\\n<ul>\\n<li>Fixed: Instagram Feed widget not working on IE browsers.<\\/li>\\n<\\/ul>\\n<h4> 1.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Render First Row As<\\/code> option in Table widget.<\\/li>\\n<li>Fixed: Flipbox widget <code>Whole Box<\\/code> link option is not working.<\\/li>\\n<li>Fixed: Default icon is not working in iHover widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.1 <\\/h4>\\n<ul>\\n<li>New: Added Color Transition widget.<\\/li>\\n<li>Tweak: Get Instagram feed by Access Token only.<\\/li>\\n<li>Tweak: Added dynamic field support for CSV file in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.0 <\\/h4>\\n<ul>\\n<li>Fixed: Instagram Feed loading spinner does not appear on preview page.<\\/li>\\n<\\/ul>\\n<h4> 1.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Hover Color<\\/code> option for title\\/icon in Tabs widget.<\\/li>\\n<li>Fixed: Active tab Margin\\/Padding issue in Tabs widget.<\\/li>\\n<li>Fixed: Vertical Tabs widget alignment issue.<\\/li>\\n<li>Fixed: Security bugs fixed.<\\/li>\\n<\\/ul>\\n<h4> 1.6.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Schema Support<\\/code> option for all Reviews widgets.<\\/li>\\n<li>Tweak: Font Awesome 5 compatibility for all widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.6.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Minimum Value<\\/code> option in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Line Width<\\/code> option for grid lines in Charts widget.<\\/li>\\n<li>Tweak: Added transition for Image Accordion overlay color.<\\/li>\\n<li>Fixed: Parallax section add-on does not work on frontend pages.<\\/li>\\n<\\/ul>\\n<h4> 1.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load assets files for section add-ons only when needed to improve performance.<\\/li>\\n<li>Tweak: Added <code>Step Size<\\/code> option for Radar type Charts.<\\/li>\\n<li>Fixed: Tabs nav container changed to div to prevent styling issues.<\\/li>\\n<\\/ul>\\n<h4> 1.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: <code>Reviews Word Length<\\/code> option does not work for non-latin characters in all reviews widgets.<\\/li>\\n<li>Fixed: <code>Notice: Undefined variable: tool_tips_image_url<\\/code> in Preview Window widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Alignment<\\/code> option in iHover widget.<\\/li>\\n<li>Fixed: <code>Border Color<\\/code> option missing for <code>Style 3<\\/code> in Tabs widget.<\\/li>\\n<li>Fixed: Bottom positioned Magic Section appears after page load.<\\/li>\\n<\\/ul>\\n<h4> 1.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Facebook Login<\\/code> Button to Premium Facebook Feed widget for easier feed pull.<\\/li>\\n<li>Fixed: <code>Maximum Value<\\/code> option added to Radar chat type in Charts widget.<\\/li>\\n<li>Fixed: <code>Carousel Arrows Position<\\/code> option shows when <code>Autoplay<\\/code> option is enabled in Yelp Reviews widget.<\\/li>\\n<li>Fixed: Loader spinner not showing on the preview page in Facebook\\/Twitter Feed.<\\/li>\\n<\\/ul>\\n<h4> 1.6.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>RTL Mode<\\/code> option for Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Fixed: <code>Transition Speed<\\/code> option not working for Ken Burns section add-on.<\\/li>\\n<li>Fixed: Image Layers <code>Freehand<\\/code> reposition not working if page contains Premium Carousel widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Review Length<\\/code> option to Facebook Reviews widget.<\\/li>\\n<li>Fixed: Images pixelated when size is increased in Facebook Reviews widget.<\\/li>\\n<li>Fixed: Messenger Chat icon not showing on mobile devices.<\\/li>\\n<li>Fixed: Cells alignment issue with multi-line text in Table widget.<\\/li>\\n<li>Fixed: Blank line below Instagram images for some themes.<\\/li>\\n<\\/ul>\\n<h4> 1.5.9 <\\/h4>\\n<ul>\\n<li>New: Added Yelp Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Facebook Login<\\/code> Button to Premium Facebook Reviews widget for easier reviews pull.<\\/li>\\n<li>Tweak: Added <code>Review Length<\\/code> option in Google Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Responsive Controls<\\/code> for Premium Particles section add-on.<\\/li>\\n<li>Tweak: Added <code>Table Layout<\\/code> option in Premium Table widget.<\\/li>\\n<li>Fixed: Divider and text in Premium Divider widget are not centered in some themes.<\\/li>\\n<li>Fixed: <code>Button Size<\\/code> in Unfold widget not applied on the front-end.<\\/li>\\n<li>Fixed: Back side <code>Link<\\/code>  unclickable on Microsoft Edge in Flip Box widget.<\\/li>\\n<li>Fixed: Twitter\\/Facebook Feed time elapsed Singular\\/Plural issue.<\\/li>\\n<li>Fixed: Clipped reviewer profile picture in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.8 <\\/h4>\\n<ul>\\n<li>New: Added Image Accordion widget.<\\/li>\\n<li>Fixed: Title\\/Icon are not horizontally centered in styles 3,4 in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.7 <\\/h4>\\n<ul>\\n<li>Tweak: <code>Read More<\\/code> button redirects to post instead of page in Facebook Feed widget.<\\/li>\\n<li>Fixed: Carousel arrows styling only works on the editor page in Google\\/Facebook Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Theme<\\/code> option for lightbox in Instagram widget.<\\/li>\\n<li>Tweak: Added <code>Date Format<\\/code> option in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Fade Speed<\\/code> option for Ken Burns section add-on.<\\/li>\\n<li>Fixed: Posts` images don\'t appear in Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Reviews date doesn\'t appear with <code>Place Info<\\/code> option disabled.<\\/li>\\n<li>Fixed: Right templates shift to left by <code>1px<\\/code> in Multi Scroll widget.<\\/li>\\n<li>Fixed: Facebook Feed widget doesn\'t work with APIs v3.3.<\\/li>\\n<\\/ul>\\n<h4> 1.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core refactored to improve performance.<\\/li>\\n<\\/ul>\\n<h4> 1.5.3 <\\/h4>\\n<ul>\\n<li>Fixed: Charts animation doesn\'t work when height option is set.<\\/li>\\n<li>Fixed: <code>Tabs Background<\\/code> overrides lists background for <code>Style 3<\\/code> in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.2 <\\/h4>\\n<ul>\\n<li>Fixed: <code>Dynamic Content<\\/code> doesn\'t work when <code>ACF Field<\\/code> is selected in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: <code>Tilt Mouse Interactivity<\\/code> doesn\'t work on IE for Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.0 <\\/h4>\\n<ul>\\n<li>Fixed: Image Comparison broken on IE with Section Vertical Parallax enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.4.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Outer Background Color<\\/code> option for container in Preview Window widget.<\\/li>\\n<li>Fixed: Magic Section content appears until page is loaded.<\\/li>\\n<li>Fixed: Image Comparison broken on IE with Image Layers scroll effects enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.4.8 <\\/h4>\\n<ul>\\n<li>Tweak: <code>WPML Compatibility<\\/code> for all widgets.<\\/li>\\n<li>Fixed: License deactivation issues.<\\/li>\\n<li>Fixed: Google reCaptcha doesn\'t work after v1.4.8<\\/li>\\n<li>Fixed: Particles are stretched on small screens.<\\/li>\\n<li>Fixed: Add-ons don\'t load with <code>MyListing<\\/code> theme.<\\/li>\\n<\\/ul>\\n<h4> 1.4.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Stretch Image<\\/code> option for background image in Image Hotspots widget.<\\/li>\\n<li>Fixed: Console error <code>UniversalTilt undefined<\\/code> on IE browser with Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.4.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Dynamic Field<\\/code> support for Instagram widget.<\\/li>\\n<li>Fixed: <code>Invalid Character on line 3361<\\/code> after v1.3.5<\\/li>\\n<\\/ul>\\n<h4> 1.4.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Scroll Effects<\\/code> for images in Image Layers widget.<\\/li>\\n<li>Tweak: Added <code>Freehand<\\/code> postioning, resizing features for layers in Image Layers widget and Multi Layer Parallax.<\\/li>\\n<li>Tweak: Added <code>Freehand<\\/code> postioning feature for Image Hotspots widget.<\\/li>\\n<li>Tweak: Added <code>Date Format<\\/code> option for Google Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Dynamic Field<\\/code> support for all <code>URL<\\/code> fields.<\\/li>\\n<li>Fixed: Content Switcher widget button issue when browse back page button is clicked.<\\/li>\\n<li>Fixed: <code>Save Settings<\\/code> button doesn\'t work in White Labeling Dashboard submenu.<\\/li>\\n<li><strong>Important: This update includes deep enhancements for Image Hotspots, Image Layers widgets and Parallax Add-on. So, please review your existing pages.<\\/strong><\\/li>\\n<\\/ul>\\n<h4> 1.4.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Data Separator<\\/code> optiuon for CSV files in Table widget.<\\/li>\\n<li>Fixed: Layout issues on Microsoft IE browser.<\\/li>\\n<li>Fixed: <code>Notice: Undefined index: premium_parallax_android_support<\\/code> , <code>premium_parallax_ios_support<\\/code> in Parallax add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.4.3 <\\/h4>\\n<ul>\\n<li>Tweak: Prevent adding inline styles\\/scripts for Section add-ons.<\\/li>\\n<li>Tweak: Changed Particles Add-on <code>JSON<\\/code> code area from <code>TEXTAREA<\\/code> to <code>CODE<\\/code><\\/li>\\n<li>Tweak: Ability to change <code>Live Search<\\/code> and <code>Show Records<\\/code> strings in Table widget.<\\/li>\\n<li>Tweak: Wait images to load before triggering <code>Masonry<\\/code> layout in Faceook Feed widget.<\\/li>\\n<li>Fixed: Cells align right issue on Google Chrome in Table widget.<\\/li>\\n<li>Fixed: Premium Divider issues with <code>Elementor Custom Positioning<\\/code> option.<\\/li>\\n<\\/ul>\\n<h4> 1.4.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Show Records<\\/code> option in Table widget.<\\/li>\\n<li>Tweak: Added <code>Blur On Hover<\\/code> effect in Table widget.<\\/li>\\n<li>Tweak: Added <code>responsive controls<\\/code> for Search field in Table widget.<\\/li>\\n<li>Tweak: Added <code>Text Color<\\/code> option for Search field in Table widget.<\\/li>\\n<li>Tweak: Added <code>Settings<\\/code> to plugin action links on <code>Plugins<\\/code> page.<\\/li>\\n<\\/ul>\\n<h4> 1.4.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Left\\/Right Section Width<\\/code> option to control width ratio in Multi Scroll widget.<\\/li>\\n<li>Tweak: Added <code>Show Caption<\\/code> option to show photo caption in Instagram widget.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> options group for hover state in Instagram widget.<\\/li>\\n<\\/ul>\\n<h4> 1.4.0 <\\/h4>\\n<ul>\\n<li>Fixed: Premium Twitter Feed does not work.<\\/li>\\n<\\/ul>\\n<h4> 1.3.9 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Parallax background position, repeat and size inherit from Elementor responsive background options.<\\/li>\\n<li>Tweak: Added responsive controls for <code>Arrow Size<\\/code> option in Premium Facebook\\/Google Reviews widgets.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> option for images for trigger and preview images in Preview Image widget.<\\/li>\\n<li>Tweak: Code refactor to enhance plugin performance speed.<\\/li>\\n<\\/ul>\\n<h4> 1.3.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Number of Columns<\\/code> option in Premium Facebook\\/Google Review and Facebook\\/Twitter widgets.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> option for images in Premium Behance\\/Instagram Feed and iHover widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.3.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Images per Row<\\/code> option in Premium Instagram widget.<\\/li>\\n<li>Tweak: Added <code>Widgets Badge<\\/code> option to white labeling to change widgets` icons badge text.<\\/li>\\n<li>Fixed: Enable Parallax on Android\\/iOS does not work for Parallax section add-on.<\\/li>\\n<li>Fixed: Different images height when <code>Masonry<\\/code> option is disabled in Premium Intagram widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.6 <\\/h4>\\n<ul>\\n<li>Fixed: Warning: require_once(\\/premium-addons-pro-includes\\/deps\\/json.php): failed to open stream: No such file or directory.<\\/li>\\n<li>Fixed: Images order when <code>Masonry<\\/code> option is disabled in Premium Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.5 <\\/h4>\\n<ul>\\n<li>Tweak: JS enhancements in Facebook, Twitter and Instagram elements to improve plugin performance.<\\/li>\\n<li>Tweak: Added <code>Infinite<\\/code> option for single image in Ken Burns add-on.<\\/li>\\n<li>Fixed: Set Tabs content to Full Width issue.<\\/li>\\n<li>Fixed: Posts overlapping when masonry option enabled in Premium Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.4 <\\/h4>\\n<ul>\\n<li>Tweak: JS enhancements in Charts, Facebook\\/Google Reviews, Image layers, Multi Scroll , and Tabs elements to improve plugin performance.<\\/li>\\n<li>Tweak: Dynamic data support for <code>Image<\\/code> in Premium Divider widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.3 <\\/h4>\\n<ul>\\n<li>Tweak: Dynamic data support in Premium Ken Burns add-on.<\\/li>\\n<li>Fixed: Image Hotspots widget issue on preview page.<\\/li>\\n<\\/ul>\\n<h4> 1.3.2 <\\/h4>\\n<ul>\\n<li>Fixed: Pointer cursor for cells with <code>Link<\\/code> option disabled in Premium Table widget.<\\/li>\\n<li>Fixed: overlapping issue when iHover widget <code>Link<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Tabs widget layout issue on iOS devices.<\\/li>\\n<\\/ul>\\n<h4> 1.3.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Border Width<\\/code> option for each dataset in Premium Charts widget.<\\/li>\\n<li>Fixed: <code>Warning: Creating default object from empty value<\\/code> in Premium Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.0 <\\/h4>\\n<ul>\\n<li>Tweak: Unnecessary <code>esc_html()<\\/code> function removed.<\\/li>\\n<li>Tweak: Unnecessary conditions removed to enhance editor page loading speed.<\\/li>\\n<\\/ul>\\n<h4> 1.2.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Second Fill Color<\\/code> option to create gradients in Line, Bar and Horizontal Bar charts.<\\/li>\\n<li>Tweak: Unnecessary functions removed from Facebook Feed, Charts, Behance and Image Comparison widgets to enhance performance.<\\/li>\\n<\\/ul>\\n<h4> 1.2.8 <\\/h4>\\n<ul>\\n<li>Tweak: CSS files loaded only when required to enhance plugin performance.<\\/li>\\n<li>Tweak: Show label next to value on Pie\\/Doughnut Premium Chart hover.<\\/li>\\n<\\/ul>\\n<h4> 1.2.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Show Values on Chart<\\/code> option to Pie\\/Doughnut chart in Premium Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added language option to Premium Messenger Chat widget.<\\/li>\\n<li>Fixed: <code>View Details<\\/code> link appears for Premium Add-ons for Elementor with White Labeling enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.2.5 <\\/h4>\\n<ul>\\n<li>Tweak: Formatting Y-Axis labels numbers in Premium Charts widget.<\\/li>\\n<li>Tweak: Ken Burns can now be used with only one image.<\\/li>\\n<li>Fixed: Charts not visible when inserted in Elementor Accordion widget.<\\/li>\\n<li>Fixed: CSV files don\'t appear in Media in Premium Tables widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Overlay Color option to Premium Ken Burns section add-on.<\\/li>\\n<li>Fixed: <code>Detected usage of deprecated noAndroid<\\/code> with Premium Parallax section add-on.<\\/li>\\n<li>Fixed: Premium Messenger Chat not working after Facebook latest Apps update.<\\/li>\\n<\\/ul>\\n<h4> 1.2.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added vertical tabs sections width option in Premium Tabs widget.<\\/li>\\n<li>Tweak: Added Filter by language option in Premium Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added arrow size and padding options to carousel arrows in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Tweak: Dynamic data support in Premium Charts widget.<\\/li>\\n<li>Tweak: Shortcodes support using text editor in Premium Content Switcher widget.<\\/li>\\n<li>Fixed: Charts issue when inserted inside Premium Modal Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.1 <\\/h4>\\n<ul>\\n<li>Fixed: Projects with grid images in Premium Behance widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added Column Width option in Premium Charts widget.<\\/li>\\n<li>Tweak: Added Carousel Autoplay speed option in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Tweak: Added Carousel Arrows position option in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Fixed: Carousel responsive issues in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Fixed: Reviews issue when no stars is returned with review.<\\/li>\\n<\\/ul>\\n<h4> 1.1.9 <\\/h4>\\n<ul>\\n<li>Tweak: Hide specific sections on mobiles\\/tables option added to Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.8 <\\/h4>\\n<ul>\\n<li>Fixed: Sections order on mobile\\/tablets in Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.7 <\\/h4>\\n<ul>\\n<li>Fixed: Responsive issues in Premium Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.6 <\\/h4>\\n<ul>\\n<li>New: Added Multi Scroll widget.<\\/li>\\n<li>Tweak: Added Margin Option for Magic Section widget in active case.<\\/li>\\n<li>Fixed: Google Reviews unloaded place image.<\\/li>\\n<li>Fixed: Tabs background\\/arrow color issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.5 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Table widget performance enhanced.<\\/li>\\n<li>Tweak: Added Dynamic Images option for all widgets.<\\/li>\\n<li>Tweak: Added Dynamic place id option for Premium Google Reviews widget.<\\/li>\\n<li>Tweak: Added Carousel option for Premium Facebook\\/Google reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.4 <\\/h4>\\n<ul>\\n<li>Fixed: Premium Tabs conflict issue.<\\/li>\\n<li>Fixed: Facebook\\/Twitter Feed read more issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.3 <\\/h4>\\n<ul>\\n<li>Fixed: Facebook Feed widget conflict issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added convert values to percentage in Premium Charts widget.<\\/li>\\n<li>Fixed: Call to a member function get_error_message() on array after license activation.<\\/li>\\n<\\/ul>\\n<h4> 1.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core enhancement for faster performance.<\\/li>\\n<li>Tweak: Premium Divider widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Flip Box widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Icon Box widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Image Layers widget performance enhanced.<\\/li>\\n<li>Tweak: Premium iHover widget performance enhanced.<\\/li>\\n<\\/ul>\\n<h4> 1.1.0 <\\/h4>\\n<ul>\\n<li>Fixed: Tabs issue on IE browser.<\\/li>\\n<li>Fixed: Group Control issue in Premium Facebook\\/Twitter widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.0.9 <\\/h4>\\n<ul>\\n<li>Fixed: Warning &quot;Invalid argument supplied for foreach() in \\/premium-addons-pro\\/widgets\\/premium-tables.php on line 1567&quot;.<\\/li>\\n<\\/ul>\\n<h4> 1.0.8 <\\/h4>\\n<ul>\\n<li>Fixed: License not Valid after trying to activate license.<\\/li>\\n<\\/ul>\\n<h4> 1.0.7 <\\/h4>\\n<ul>\\n<li>New: Added WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.6 <\\/h4>\\n<ul>\\n<li>Fixed: Image size issue in Premium Parallax addon.<\\/li>\\n<li>Fixed: Transparent images grey background issue.<\\/li>\\n<li>Fixed: Invisible charts issue.<\\/li>\\n<\\/ul>\\n<h4> 1.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: App ID and App secret are changed to Access Token in Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.4 <\\/h4>\\n<ul>\\n<li>Tweak: Animations starts on scrolling in Premium Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.3 <\\/h4>\\n<ul>\\n<li>New: Added Facebook Feed element.<\\/li>\\n<\\/ul>\\n<h4> 1.0.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Background Size\\/Position options in Premium Section Parallax.<\\/li>\\n<li>Fixed: Instagram Feed grid issue when Masonry is disabled.<\\/li>\\n<li>Fixed: Fatal error: Can\'t use function return value in write context for PHP versions below 5.5<\\/li>\\n<\\/ul>\\n<h4> 1.0.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added URLs option to each dataset in Premium Charts widget.<\\/li>\\n<li>Tweak: Added image fill option in Premium Ken Burns.<\\/li>\\n<\\/ul>\\n<h4> 1.0.0 <\\/h4>\\n<ul>\\n<li>Initial stable release.<\\/li>\\n<\\/ul>\",\"installation\":\"<h4> Minimum Requirements <\\/h4>\\n<ul>\\n<li>WordPress 4.5 or greater<\\/li>\\n<li>PHP version 5.4 or greater<\\/li>\\n<li>MySQL version 5.0 or greater<\\/li>\\n<\\/ul>\\n<h4> Installation Instructions <\\/h4>\\n<ul>\\n<li>First make sure that Elementor Page Builder and Premium Addons for Elementor are installed, As this plugin works only with both of them.<\\/li>\\n<li>Download the plugin then Upload it to the plugin folder: \\/wp-content\\/plugins\\/ or install it through the WordPress plugins screen directly.<\\/li>\\n<li>Activate the plugin through the \\u2018Plugins\\u2019 screen in WordPress<\\/li>\\n<li>You can find Premium Addons Elements under the category \\u201cPremium Addons\\u201d on your Elementor element\\/widget list.<\\/li>\\n<\\/ul>\"},\"banners\":{\"high\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2018\\/10\\/premium-addons-pro-plugin-banner-hd.jpg\",\"low\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2018\\/10\\/premium-addons-pro-plugin-banner-ld.jpg\"},\"icons\":{\"1x\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2021\\/08\\/premium-addons-logo-128x128.jpg\",\"2x\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2021\\/08\\/premium-addons-logo-256x256.jpg\"},\"stable_tag\":\"2.9.13\",\"license\":\"GPL v3.0\",\"tested\":\"6.4.3\",\"description\":[\"<p>This plugin is an extension to Premium Addons for Elementor Plugin that includes Pro Elementor widgets and Addons for Elementor Page Builder. Visit <a href=\\\"https:\\/\\/www.premiumaddons.com\\/\\\">Premium Addons Website<\\/a> to check widgets and addons demos.<\\/p>\\n<p>Premium Addons PRO plugin\\u2019s widgets are cross browser compatible and also fully responsive, Your website will rock on all browsers as well as tables and mobile devices.<\\/p>\\n<p>When using Premium Addons\\u2019 widgets you will notice that it has more customization options than any other widget in other plugin.<\\/p>\\n<p>Premium Addons PRO can be used only as a complement of Elementor page builder plugin as it\\u2019s not a standalone plugin.<\\/p>\\n<h3>Features<\\/h3>\\n<ul>\\n<li>Fully Customizable Elements.<\\/li>\\n<li>Options panel for enabling desired elements only for faster performance.<\\/li>\\n<li>Free Support through online forums.<\\/li>\\n<\\/ul>\\n<h3>Available Elements<\\/h3>\\n<ol>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">Premium Alert Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/animated-section-gradients-for-elementor-page-builder\\/\\\">Premium Animated Section Gradient<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/behance-feed-widget-for-elementor-page-builder\\/\\\">Premium Behance Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/charts-widget-for-elementor-page-builder\\/\\\">Premium Charts<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/content-switcher-widget-for-elementor-page-builder\\/\\\">Premium Content Switcher<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/dual-header-widget-for-elementor-page-builder\\/\\\">Premium Divider<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-feed-widget-for-elementor-page-builder-2\\/\\\">Premium Facebook Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-messenger-widget-for-elementor-page-builder\\/\\\">Premium Facebook Messenger<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-reviews-widget-for-elementor-page-builder\\/\\\">Premium Facebook Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">Premium Flip Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/google-reviews-for-elementor-page-builder\\/\\\">Premium Google Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/icon-box-widget-for-elementor-page-builder\\/\\\">Premium Icon Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ihover-widget-for-elementor-page-builder\\/\\\">Premium iHover<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-image-accordion-widget\\/\\\">Premium Image Accordion<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-comparison-widget-for-elementor-page-builder\\/\\\">Premium Image Comparison<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-hotspots-widget-for-elementor-page-builder\\/\\\">Premium Image Hotspots<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-layers-widget-for-elementor-page-builder\\/\\\">Premium Image Layers<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/instagram-feed-widget-for-elementor-page-builder\\/\\\">Premium Instagram Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ken-burns-section-addon-for-elementor-page-builder\\/\\\">Premium Ken Burns<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/magic-section-widget-for-elementor-page-builder\\/\\\">Premium Magic Section<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">Premium Multi Scroll<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/parallax-section-addon-for-elementor-page-builder\\/\\\">Premium Parallax<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/particles-section-addon-for-elementor-page-builder\\/\\\">Premium Particles<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/preview-window-widget-for-elementor-page-builder\\/\\\">Premium Preview Window<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/table-widget-for-elementor-page-builder\\/\\\">Premium Tables<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/twitter-feed-widget-for-elementor-page-builder\\/\\\">Premium Twitter Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/tabs-widget-for-elementor-page-builder-2\\/\\\">Premium Tabs<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/unfold-widget-for-elementor-page-builder\\/\\\">Premium Unfold<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/whatsapp-widget-for-elementor-page-builder\\/\\\">Premium WhatsApp Chat<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-yelp-reviews-widget\\/\\\">Premium Yelp Reviews<\\/a><\\/li>\\n<\\/ol>\"],\"changelog\":[\"<h4> 2.9.13 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Fixed: Off-canvas widget layout broken on RTL sites.<\\/li>\\n<\\/ul>\\n<h4> 2.9.12 <\\/h4>\\n<ul>\\n<li>New: Magic Section widget rebuilt. It\'s now Off-Canvas - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-off-canvas-widget\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Fixed Content Template option in Multi Scroll widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Icon hover styling options not working in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.11 <\\/h4>\\n<ul>\\n<li>New: Added new hover effects to all the buttons all over the plugin - <a href=\\\"https:\\/\\/premiumaddons.com\\/button-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Alert Box widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Social icons not showing in Image Hotspots widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.10 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to apply Particles addon on whole page through Elementor page settings.<\\/li>\\n<li>Tweak: Added responsive controls to Display option in Content Toggle widget.<\\/li>\\n<li>Fixed: Disable Snappy Effect on Touch Devices in Horizontal Scroll widget not working.<\\/li>\\n<li>Fixed: Flickering issue with Image Sequence effect in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.9 <\\/h4>\\n<ul>\\n<li>Tweak: Divider widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/divider-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Option to Disable Scroll on Accordion Item Click added in in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to hide Horizontal Scroll widget slides on desktop devices.<\\/li>\\n<li>Fixed: Unnecessary HTML markup rendered in the table widget.<\\/li>\\n<li>Fixed: Feed is duplicated in Facebook and Behance Feed widgets.<\\/li>\\n<li>Fixed: Facebook and Behance Feed widgets not working on the frontend.<\\/li>\\n<\\/ul>\\n<h4> 2.9.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added SVG Code option in Site Logo widget.<\\/li>\\n<li>Tweak: Gold API error messages handled in News Ticker widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added Option to enable US numbers sorting in Table widget.<\\/li>\\n<li>Tweak: Compatibility between Hide Slide On option in Multi Scroll widget and Elementor custom breakpoints.<\\/li>\\n<\\/ul>\\n<h4> 2.9.5 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error when Premium Addons Pro is activated without the free version.<\\/li>\\n<li>Fixed: Masonry effect not working correctly on editor page in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Custom Navigation Element Selector option in Multi Scroll to be used to navigate to Multi Scroll slides.<\\/li>\\n<li>Fixed: Ratings values between .7 and .9 are rendered as half star in Social Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.9.3 <\\/h4>\\n<ul>\\n<li>Fixed: PHP Error when Image Accordion widget is used.<\\/li>\\n<li>Fixed: Elementor asks to run Safe Mode with Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Alternative Gold API key option in News Ticker widget.<\\/li>\\n<li>Tweak: Added Load More option in Smart Post Listing widget.<\\/li>\\n<li>Tweak: Added more styling controls in Smart Post Listing widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.9.0 <\\/h4>\\n<ul>\\n<li>New: Added Smart Post Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-smart-post-listing-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Show Alt text for the images in Ken Burns addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.27 <\\/h4>\\n<ul>\\n<li>Fixed: Twitter Feed widget not working.<\\/li>\\n<\\/ul>\\n<h4> 2.8.26 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Numbers showing on hover not formatted in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.25 <\\/h4>\\n<ul>\\n<li>Tweak: Removed Twitter Feed credentials section.<\\/li>\\n<\\/ul>\\n<h4> 2.8.24 <\\/h4>\\n<ul>\\n<li>Tweak: Added custom position options for tooltips in Image Hotspots widget.<\\/li>\\n<li>Fixed: Multi Scroll widget not working when elements with entrance animations used in it.<\\/li>\\n<li>Fixed: Twitter Feed widget not working in some cases.<\\/li>\\n<li>Fixed: Image Comparison widget handle not working on RTL sites.<\\/li>\\n<\\/ul>\\n<h4> 2.8.23 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching options in Facebook and Behance Feed widgets.<\\/li>\\n<li>Tweak: Multi Scroll widget improved to trigger entrance animations on slide change.<\\/li>\\n<li>Fixed: Button showing in back side in 3D Hover Box widget.<\\/li>\\n<li>Fixed: Horizontal Scroll issues on mobile devices.<\\/li>\\n<li>Fixed: Hide Empty Reviews option not working correctly in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.22 <\\/h4>\\n<ul>\\n<li>Tweak: Added custom size unit for range controls in some widgets.<\\/li>\\n<li>Tweak: Load posts only if they have body text in Facebook Feed widget.<\\/li>\\n<li>Fixed: Load Chart On option not working in Charts widget.<\\/li>\\n<li>Fixed: Fatal error in Tabs widget when an image icon with empty image is added.<\\/li>\\n<\\/ul>\\n<h4> 2.8.21 <\\/h4>\\n<ul>\\n<li>New: Added Magnet Effect in Custom Mouse Cursor addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-feature\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Magic Scroll addon performance improved.<\\/li>\\n<\\/ul>\\n<h4> 2.8.20 <\\/h4>\\n<ul>\\n<li>Tweak: CSS files size minimized for better performance.<\\/li>\\n<li>Fixed: Custom link attributes not working in Icon Box widget.<\\/li>\\n<li>Fixed: Console error in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.19 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to load Magic Scroll addon on page load, not when the section is reached.<\\/li>\\n<li>Fixed: Image Comparison widget not working when used inside Tabs widget.<\\/li>\\n<li>Fixed: Lock Page Scroll option in Magic Scroll addon causing a blank area while scrolling on mobile devices.<\\/li>\\n<li>Fixed: PHP warning in Parallax addon when no layers are added.<\\/li>\\n<li>Fixed: Console error with Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.18 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text Shadow and Box Shadow scroll effects in Magic Scroll addon.<\\/li>\\n<li>Tweak: Added Sort Reviews by date option in Google Reviews widget.<\\/li>\\n<li>Tweak: Show\\/hide images by hashtags in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.17 <\\/h4>\\n<ul>\\n<li>Tweak: Sticky effect behavior improved in Magic Scroll addon.<\\/li>\\n<li>Tweak: Added option to trigger entrance animations once for Snappy scroll in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Sticky effect not working on the editor page in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.16 <\\/h4>\\n<ul>\\n<li>Fixed: Draw SVG not working on the editor page with multiple SVGs in Magic Scroll addon.<\\/li>\\n<li>Fixed: Transition is added to Icon Box widget when used with Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.15 <\\/h4>\\n<ul>\\n<li>Fixed: Elements with entrance animation flash in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Icons not showing in some controls.<\\/li>\\n<\\/ul>\\n<h4> 2.8.14 <\\/h4>\\n<ul>\\n<li>New: Added Magic Scroll addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-magic-scroll-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.8.13 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.8.0<\\/li>\\n<li>Fixed: Ken Burns section\\/column addon not working with recent Elementor versions.<\\/li>\\n<\\/ul>\\n<h4> 2.8.12 <\\/h4>\\n<ul>\\n<li>New: Added Site Logo widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-site-logo-widget\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.8.11 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option in Instagram Feed widget to improve the feed performance and loading speed.<\\/li>\\n<li>Tweak: Added Close On Click Outside option in Magic Section widget.<\\/li>\\n<li>Fixed: Icon styling not applied properly on SVG icons in Divider widget.<\\/li>\\n<li>Fixed: Mouse tilt option not working since Premium Addons for Elementor v4.9.35.<\\/li>\\n<li>Fixed: Feed is not showing if Posts\\/Account option value is larger than the posts returned by Facebook.<\\/li>\\n<li>Fixed: Alignment option not working properly for multi-line values in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.10 <\\/h4>\\n<ul>\\n<li>New: Added Random Badges option in Mega Menu widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-mega-menu-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: PHP warnings in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.9 <\\/h4>\\n<ul>\\n<li>Fixed: Console error when SVG Draw option is disabled for Parallax addon.<\\/li>\\n<li>Fixed: SVG Draw option not working for Font Awesome icons in Icon Box widget.<\\/li>\\n<li>Fixed: Applying global background colors not working in Magic Section widget.<\\/li>\\n<li>Fixed: Icon color applied on Lottie animation in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.8 <\\/h4>\\n<ul>\\n<li>Tweak: Behance Feed widget now loads feed on scroll, not on page load.<\\/li>\\n<li>Fixed: PHP warning after v2.8.7.<\\/li>\\n<\\/ul>\\n<h4> 2.8.7 <\\/h4>\\n<ul>\\n<li>Tweak: Make sure Custom Mouse Cursor addon JS files are loaded only if the addon is used on a page.<\\/li>\\n<li>Fixed: Navigation Arrows\\/Dots not working properly on touch devices in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.6 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error due to Image Accordion widget since v2.8.4.<\\/li>\\n<\\/ul>\\n<h4> 2.8.5 <\\/h4>\\n<ul>\\n<li>Fixed: Icons in Icon Box widget always dissappear if Draw SVG option is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.8.4 <\\/h4>\\n<ul>\\n<li>New: Added Draw Icon option in all widgets that has Icon option in them.<\\/li>\\n<li>Tweak: Added Horizontal\\/Vertical Alignment options for multi-layers in Parallax addon.<\\/li>\\n<li>Fixed: Conflict between Custom Mouse Cursor addon and WP Rocket Defer JS files option.<\\/li>\\n<\\/ul>\\n<h4> 2.8.3 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.7.0.<\\/li>\\n<li>Fixed: Freehand Positioning feature not working when the device mode is changed in the editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.8.2 <\\/h4>\\n<ul>\\n<li>Tweak: Facebook Feed widget styling improved for RTL sites.<\\/li>\\n<li>Fixed: Conflict with Elementor Pro templates.<\\/li>\\n<li>Fixed: Even layout not working with Carousel Infinite Autoplay in social reviews widgets.<\\/li>\\n<li>Fixed: Carousel Navigation Arrows color\\/size controls not working in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.1 <\\/h4>\\n<ul>\\n<li>Fixed: PHP warning since v2.8.0<\\/li>\\n<\\/ul>\\n<h4> 2.8.0 <\\/h4>\\n<ul>\\n<li>Tweak: Apply Custom Mouse Cursor on full page or the entire website - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-feature\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added responsive controls to Number of Columns option in Behance Feed widget.<\\/li>\\n<li>Fixed: Carousel Tabs option applied on nested tabs.<\\/li>\\n<li>Fixed: Unnecessay Elementor placeholder images added to the Media Library after importing templates.<\\/li>\\n<li>Fixed: Multi Scroll widget not working with Elementor custom breakpoints.<\\/li>\\n<li>Fixed: Ken Burns addon not showing images properly on small screens.<\\/li>\\n<li>Fixed: Hover Box widget not working properly on iOS devices.<\\/li>\\n<\\/ul>\\n<h4> 2.7.9 <\\/h4>\\n<ul>\\n<li>Tweak: Add responsive controls for image control in Ken Burns section\\/column addon.<\\/li>\\n<li>Fixed: Horizontal\\/Vertical Offset option not working for social icon in all Social Reviews widgets.<\\/li>\\n<li>Fixed: Horizontal Offset and z-index options not working for Fixed Content template in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Console error in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.8 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements for better performance and loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.7.7 <\\/h4>\\n<ul>\\n<li>Tweak: Load Custom Mouse Cursor addon when the element is visible on viewport to improve performance and page loading speed.<\\/li>\\n<li>Tweak: Added Cover Image size option in Behance Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.6 <\\/h4>\\n<ul>\\n<li>Tweak: Add Mask Image option in Image Layers widget.<\\/li>\\n<li>Tweak: Add Render As SVG\\/Canvas option for Lottie Animation icons in Hover Box widget.<\\/li>\\n<li>Tweak: HTML markup optimized for Image Hotspots and Twitter Feed widgets for better performance.<\\/li>\\n<li>Fixed: Accordion Tabs option not working in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.5 <\\/h4>\\n<ul>\\n<li>New: Added URL String, Shortcode and WooCommerce Products in Cart options in Display Conditions.<\\/li>\\n<li>Tweak: HTML markup optimized for Hover Box, Image Accordion, Instagram Feed, Tabs, Unfold widgets for better performance.<\\/li>\\n<li>Tweak: Added Disable Floating Effects on Safari option in widgets have floating effects.<\\/li>\\n<li>Tweak: Trigger Particles and Badge addons JS code when visible on viewport to improve page loading speed.<\\/li>\\n<li>Tweak: Added compatibility Charts and Horizontal Scroll widgets.<\\/li>\\n<li>Fixed: Change Colors As Gradient option not working in Background Transition widget.<\\/li>\\n<li>Fixed: Profile Header image not showing properly on small devices in Twitter Feed widget.<\\/li>\\n<li>Fixed: Right Side Template option not showing in Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility between Badge Global Addon and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Horizontal Scroll jiterring issue on touch devices.<\\/li>\\n<\\/ul>\\n<h4> 2.7.3 <\\/h4>\\n<ul>\\n<li>New: Added Create\\/Edit Live Templates feature in all widgets that support Elementor Templates.<\\/li>\\n<\\/ul>\\n<h4> 2.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for future features compatibility<\\/li>\\n<li>Fixed: Button Trigger Size option not working on frontend in Magic Section widget.<\\/li>\\n<li>Fixed: Alignment issue in Icon Box widget when description is short.<\\/li>\\n<li>Fixed: Invalid CSS added in the editor when Badge Addon is enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.7.1 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error with some PHP versions after v2.7.0<\\/li>\\n<\\/ul>\\n<h4> 2.7.0 <\\/h4>\\n<ul>\\n<li>New: Added Premium Badge global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-badge-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: HTML markup optimized for Table widget for better performance.<\\/li>\\n<li>Tweak: Added Icon Color and Text Color\\/Typography options for each repeater cell in Table widget.<\\/li>\\n<li>Fixed: Hover Color and Padding options not working for Read More link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.8 <\\/h4>\\n<ul>\\n<li>New: Added five new skins in Elementor WooCommerce Products Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-woocommerce-products\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added compatibility between section\\/column addons and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Widgets code refactored to improve performance and loading speed.<\\/li>\\n<li>Tweak: Added Hover Box Shadow option in Lottie Animation section addon.<\\/li>\\n<li>Fixed: PHP warning when Follow Delay option value is not set in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: Image with Size option set to custom not rendered in Image Layers and Icon Box widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.6.7 <\\/h4>\\n<ul>\\n<li>New: Added Custom Mouse Cursor global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-feature\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Auto Change Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: HTML markup for images in Icon Box widget.<\\/li>\\n<li>Tweak: Make sure images in Image Layers and Tabs widgets are lazyloaded to improve loading speed.<\\/li>\\n<li>Fixed: Section\\/Column addons not working on editor when used inside widgets using Elementor templates.<\\/li>\\n<\\/ul>\\n<h4> 2.6.6 <\\/h4>\\n<ul>\\n<li>Fixed: Box shadow and Background Color options overriden by default values in CSS in Preview Window widget.<\\/li>\\n<li>Fixed: Charts widget not working in some cases inside Tabs widget.<\\/li>\\n<li>Fixed: Animated Gradient and Blob Generator addons not working in Tabs widget.<\\/li>\\n<li>Fixed: Ken Burns addon Infinite option always disabled when the editor page is reloaded.<\\/li>\\n<\\/ul>\\n<h4> 2.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load the main CSS file only when required.<\\/li>\\n<li>Fixed: Tabs widget not working properly with some themes.<\\/li>\\n<li>Fixed: Compatibility between Carousel option in Social Reviews widgets and RTL sites.<\\/li>\\n<li>Fixed: Keyboard Scrolling still works even when the control is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.5.0.<\\/li>\\n<\\/ul>\\n<h4> 2.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added options to control Scroll Offset for each section individually in Color Transition widget.<\\/li>\\n<li>Tweak: Javascript loading method improved for Animated Gradient, Particles section\\/column addons for better performance.<\\/li>\\n<li>Fixed: Styling options not working for SVG icons in Magic Section widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added WooCommerce Total Amount In Cart and Current Product Stock options in Display Conditions feature.<\\/li>\\n<li>Fixed: Console error when videos are inserted in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.1 <\\/h4>\\n<ul>\\n<li>Fixed: Undefined variable $dir_class in Image Layers widget when Text option is used.<\\/li>\\n<li>Fixed: Button Size option not working in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.0 <\\/h4>\\n<ul>\\n<li>New: Added Animated Blob Generator section addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-animated-blob-generator\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Radar Style option in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added div, p and span HTML tag options for heading in Hover Box widget.<\\/li>\\n<li>Fixed: Default icon size changed in Hover Box widget.<\\/li>\\n<li>Fixed: Background Color not changing when multiple Background Transition widgets are used on the same page.<\\/li>\\n<\\/ul>\\n<h4> 2.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Background is not changed on scroll up in Background Transition widget.<\\/li>\\n<li>Fixed: Nested tabs styling overwrite issue in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Tabs widget rebuilt for better usability and editing experience.<\\/li>\\n<li>Tweak: Control number of carousel slides to show in Instagram Feed widget.<\\/li>\\n<li>Tweak: Prevent Background Transition widget from changing color when up\\/down backgrounds are the same.<\\/li>\\n<li>Fixed: Line height not working for Business\\/Place Name, Reviewer Name and Review Text in Social Reviews widgets.<\\/li>\\n<li>Fixed: Entrance Animations not working on for the first in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Tabs widget not working when shortcodes are used in tabs content.<\\/li>\\n<\\/ul>\\n<h4> 2.5.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Heroes Flying-Left effect in iHover widget.<\\/li>\\n<li>Tweak: Remove any duplicate content when Accordion Tabs option is enabled in Tabs widget.<\\/li>\\n<li>Tweak: Added Tab ID option in Tabs widget.<\\/li>\\n<li>Fixed: Animation issues for Flash Rotation, Flip Door, and Magic Door effects in iHover widget.<\\/li>\\n<li>Fixed: Charts not working on the editor page on Chrome browser.<\\/li>\\n<li>Fixed: Color option not applied on links in Table widget when CSV file is used.<\\/li>\\n<\\/ul>\\n<h4> 2.5.2 <\\/h4>\\n<ul>\\n<li>Tweak: Save all the plugin settings on change without need to click &quot;Save Settings&quot; button.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.4.<\\/li>\\n<li>Fixed: Snappy scroll stability issues in Horizontal Scroll issues.<\\/li>\\n<li>Fixed: Compatibility issues between Elementor custom breakpoints and Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: iHover widget code refactored for faster editing speed..<\\/li>\\n<li>Tweak: Added Image Hover Effect in Image Layers widget.<\\/li>\\n<li>Tweak: Added compatibility between Multiscroll widget and sticky headers.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Premium Particles not working on some devices in editor page.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Content is not fully rendered issue in Unfold widget.<\\/li>\\n<li>Fixed: Removed Unnecessary requests made in Instagram Feed widget.<\\/li>\\n<li>Fixed: Hide Slide On and Disable Horizontal Scroll On options not working togethr in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Carousel not working in Facebook Feed widget when <code>Only Show Admin Posts<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Fold Height option not working when set to <code>0<\\/code> in Unfold widget.<\\/li>\\n<li>Fixed: Console error in Multi Scroll widget.<\\/li>\\n<li>Fixed: Admin notices not showing when Premium Addons for Elementor is not installed.<\\/li>\\n<\\/ul>\\n<h4> 2.5.0 <\\/h4>\\n<ul>\\n<li>Tweak: JS code refactored for better performance and faster editing speed.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.2.<\\/li>\\n<li>Fixed: Emojis not showing in Twitter Feed widget.<\\/li>\\n<li>Fixed: Slides overlapping issue on touch devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Image Hotspots colors not working in editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.4.9 <\\/h4>\\n<ul>\\n<li>New: Added Advanced Border Radius option to improve the normal Border Radius option - <a href=\\\"https:\\/\\/9elements.github.io\\/fancy-border-radius\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Particles overlapping issue when browser active tab is changed.<\\/li>\\n<li>Fixed: Alignment controls icons not showing in editor panel.<\\/li>\\n<li>Fixed: Tabs widget style conflict with LearnDash plugin.<\\/li>\\n<\\/ul>\\n<h4> 2.4.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to control <code>Based on Number of Reviews<\\/code> string in all social reviews widgets.<\\/li>\\n<li>Fixed: Expired access token is not refreshed in Instagram Feed widget.<\\/li>\\n<li>Fixed: Image appears before entrance animation starts in Image Layers widget.<\\/li>\\n<li>Fixed: Facebook Feed widget conflict with Complianz | GDPR\\/CCPA Cookie Consent plugin.<\\/li>\\n<li>Fixed: Pagination not working in the editor in Table widget.<\\/li>\\n<li>Fixed: Tabs widget conflict with some themes.<\\/li>\\n<\\/ul>\\n<h4> 2.4.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Change Tabs to Accordion On Small Screens<\\/code> option in Tabs widget.<\\/li>\\n<li>Tweak: Improved compatibility with Elementor new version.<\\/li>\\n<\\/ul>\\n<h4> 2.4.6 <\\/h4>\\n<ul>\\n<li>Tweak: Improved Social Reviews widgets compatibility for RTL sites.<\\/li>\\n<li>Tweak: Improved WPML compatibility with all widgets.<\\/li>\\n<li>Tweak: Added Icon Spacing option in Unfold widget.<\\/li>\\n<li>Fixed: SVGs icons not showing on button in Unfold widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.5 <\\/h4>\\n<ul>\\n<li>Fixed: Code improvements for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.4.4 <\\/h4>\\n<ul>\\n<li>Fixed: Console error in Parallax addon issue.<\\/li>\\n<\\/ul>\\n<h4> 2.4.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Infinite Autoplay for carousel in social reviews widgets.<\\/li>\\n<li>Tweak: Added Navigation Type Dots\\/Arrows option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Show Number of Reviews option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Put Place\\/Business Info next to reviews option in social reviews widgets.<\\/li>\\n<li>Fixed: Console error <code>$ is not defined<\\/code> since v2.4.2.<\\/li>\\n<\\/ul>\\n<h4> 2.4.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Clear Cached Data button to Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Tweak: Added Carousel Arrows option for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Snap Scroll improved in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.1 <\\/h4>\\n<ul>\\n<li>Fixed: Horizontal Scroll slides anchoring not working since v2.4.0<\\/li>\\n<li>Fixed: Lightbox option issue in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.0 <\\/h4>\\n<ul>\\n<li>Tweak: Feed Media Height control added to work all time in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Section\\/Column addons code refactored to improve editing speed.<\\/li>\\n<\\/ul>\\n<h4> 2.3.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added Hovered Image Width control option in Image Accordion widget.<\\/li>\\n<li>Tweak: Javascript Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Lottie Animation icon size option not working on Chrome in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added Spacing Color option in Image Accordion widget.<\\/li>\\n<li>Fixed: Horizontal Scroll anchor links not working with Elementor popups.<\\/li>\\n<li>Fixed: Images Spacing option not working with horizontal direction in Image Accordion widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Minimal Mask effect for Text in Image Layers widget.<\\/li>\\n<li>Tweak: Added Image Spacing option in Image Accordion widget.<\\/li>\\n<li>Fixed: Icon Color option not applied on SVGs in all widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.3.6 <\\/h4>\\n<ul>\\n<li>Fixed: Hide Section option not working after v2.3.5 in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added Disable Horizontal Scroll On Tablet\\/Mobile devices option in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added Wave Effect option in Animated Gradient add-on.<\\/li>\\n<li>Tweak: Added Change Legend to Circles option in Charts widget.<\\/li>\\n<li>Tweak: Added Maximum Height control in Magic Section.<\\/li>\\n<li>Fixed: Equal Height option not working when Carousel is enabled in Social Feed and Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.3.4 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Live Search option shows results only from current page in Table widget.<\\/li>\\n<li>Fixed: Icon Hover Animation not working with Whole Box Link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Pull Data from CSV file in Charts widget.<\\/li>\\n<li>Fixed: Some Particles effects not working.<\\/li>\\n<li>Fixed: Template style is rendered in Content Toggle widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Lottie Animations, Icon and Text Trigger options in Preview Window widget.<\\/li>\\n<li>Tweak: Added Show\\/Hide Reviewer Image option in Social Reviews widgets.<\\/li>\\n<li>Tweak: Added Show\\/Hide Place Rating Stars option in Social Reviews widgets.<\\/li>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.3.1 <\\/h4>\\n<ul>\\n<li>Tweak: Compatibility with Elementor PRO 3.2.0.<\\/li>\\n<\\/ul>\\n<h4> 2.3.0 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and faster editor loading.<\\/li>\\n<li>Tweak: Font Awesome 5 compatibility for Magic Section widget.<\\/li>\\n<li>Tweak: Added option to enable cookies for logged in users in Alert Box widget.<\\/li>\\n<li>Tweak: Added Hover Image option in Preview Window widget.<\\/li>\\n<li>Tweak: Added responsive controls for Fold Height and Fade Height options in Unfold widget.<\\/li>\\n<li>Tweak: Added Icon Spacing option for Link in Icon Box widget.<\\/li>\\n<li>Fixed: Icon Spacing not working on RTL sites in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Tooltips height issue in Image Hotspots widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to hide specific sections on different devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Content alignment responsive controls not working in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.8 <\\/h4>\\n<ul>\\n<li>New: Apply Animated Gradient, Ken Burns, Parallax and Particles add-on on columns.<\\/li>\\n<li>Fixed: Global Colors not working for Animated Gradient add-on.<\\/li>\\n<li>Fixed: Spinner effect text link not working in iHover widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text option in Image Layers widget.<\\/li>\\n<li>Tweak: Code refactored for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added Show Admin Posts Only option in Facebook Feed widget.<\\/li>\\n<li>Tweak: Added Data Format Locale option to format numbers in Charts widget.<\\/li>\\n<li>Tweak: Number formatting in Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added Horizontal Scroll Parallax option in Parallax Section add-on.<\\/li>\\n<li>Tweak: Added Profile Header and Tweet Information options in Twitter Feed widget.<\\/li>\\n<li>Tweak: Added Cube effect in Hover Box widget.<\\/li>\\n<li>Tweak: Added Profile Header in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Feed Share button in Instagram Feed widget.<\\/li>\\n<li>Tweak: WPML Compatibility for Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Reload data every Minute option changed to Five Minutes to prevent API block in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Show\\/Hide Profile Name and Feed Content option in Facebook\\/Twitter Feed widget.<\\/li>\\n<li>Tweak: Added Feed Media Image Height option in Facebook\\/Twitter Feed widget.<\\/li>\\n<li>Tweak: Added CSS ID option for hotspots in Image Hotspots widget.<\\/li>\\n<li>Fixed: All RTL issues in Facebook\\/Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Custom Navigation option to Tabs widget.<\\/li>\\n<li>Tweak: Added Back To Initial Position for Parallax Mouse Interactivity in Image Layers widget.<\\/li>\\n<li>Fixed: Icon Spacing option not working when direction option is set to RTL in Table widget.<\\/li>\\n<li>Fixed: Google Sheets not working in Table widget.<\\/li>\\n<li>Fixed: Left Margin\\/Padding option not working for Title\\/Link in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.2 <\\/h4>\\n<ul>\\n<li>Tweak: Now you can load more than 25 feed posts in Instagram Feed widget.<\\/li>\\n<li>Fixed: Google Sheets not working in Table widget.<\\/li>\\n<li>Fixed: Carousel swipes in opposite direction in all social feed\\/reviews widgets.<\\/li>\\n<li>Fixed: Duplicated Premium Addons icon in section add-ons after WordPress v5.6.<\\/li>\\n<\\/ul>\\n<h4> 2.2.1 <\\/h4>\\n<ul>\\n<li>Fixed: Description not showing issue in Icon Box widget.<\\/li>\\n<li>Fixed: Font Awesome icons not showing in Image Hotspots widget.<\\/li>\\n<li>Fixed: Inline editing not working for content in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added two new styles to Hover Box widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Carousel option in Facebook\\/Instagram Feed widgets.<\\/li>\\n<li>Tweak: Added Equal Height option in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Added Lottie Animation Icon option in Tabs widget.<\\/li>\\n<li>Tweak: Added Whole Box Link and Link Position options in Icon Box widget.<\\/li>\\n<li>Tweak: Added responsive controls for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added slides spacing for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added Rotate option to back icon in Icon Box widget.<\\/li>\\n<li>Tweak: Hotspots Image render function code refactored to improve for site performance.<\\/li>\\n<li>Tweak: Removed API Key option in Behance Feed widget.<\\/li>\\n<li>Fixed: List layout width issue in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Fixed: Multi Scroll widget console error with some themes.<\\/li>\\n<li>Fixed: Horizontal Scroll widget issues on browser window resize.<\\/li>\\n<li>Fixed: Tabs widget spacing issues on small screens.<\\/li>\\n<li>Fixed: Default padding given to content in Content Toggle widget.<\\/li>\\n<li>Fixed: Widgets Badge White Labeling option not working.<\\/li>\\n<li>Fixed: Warning <code>Trying to access array offset on value of type null<\\/code> when Navigation Arrows option is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.1.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added WPML Compatibility for Table widget.<\\/li>\\n<li>Fixed: Bounce image issue in Parallax section addon.<\\/li>\\n<li>Fixed: Font Awesome icons not showing in social feed widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.1.3 <\\/h4>\\n<ul>\\n<li>Tweak: Alt attribute is now reading from Media library for images in Image Layers widget.<\\/li>\\n<li>Tweak: Unnecessary code removed for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text Editor\\/Template Content Type option in Unfold widget.<\\/li>\\n<li>Tweak: Added Interactive option for tooltips in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added File Source (URL\\/File Upload) option in Lottie Animations section add-on.<\\/li>\\n<li>Fixed: Images Alt attribute not added in multi-layered Parallax add-on.<\\/li>\\n<li>Fixed: Images stretch issue in Image Comparison widget.<\\/li>\\n<li>Fixed: Handle not moving in RTL sites issue in Image Comparison widget.<\\/li>\\n<li>Fixed: Responsive controls for section background not applied on Parallax add-on.<\\/li>\\n<li>Fixed: Custom Data table not pulling data after the file URL is changed in Table widget.<\\/li>\\n<li>Fixed: Instagram video not showing in RTL sites in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added new skin Cards in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Tweak: Added Maximum Words Number option for image caption in Instagram Feed widget.<\\/li>\\n<li>Fixed: Icon Color option not applied on SVGs in Tabs widget.<\\/li>\\n<li>Fixed: Place\\/Page avatar alignment issue on Twenty Twenty theme in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.1.0 <\\/h4>\\n<ul>\\n<li>Fixed: Icon Spacing option not working on RTL sites in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Icon Spacing option not working when Icon Position is set to After in Magic Section widget.<\\/li>\\n<li>Fixed: Freehand design option not working in Image Layers, Hotspots and Parallax section add-on after Elementor 3.0.0.<\\/li>\\n<li>Fixed: Page update button is disabled after using Freehand position\\/resize feature.<\\/li>\\n<\\/ul>\\n<h4> 2.0.9 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.0.0.<\\/li>\\n<li>Fixed: Particles add-on appears below section in RTL sites issue.<\\/li>\\n<li>Fixed: Undefined \'open_graph_story\' in Facebook Reviews widget.<\\/li>\\n<li>Fixed: Icon Size option not working with SVG icons in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.8 <\\/h4>\\n<ul>\\n<li>Tweak: Add different color to each dataset value in bar Chart widget.<\\/li>\\n<li>Fixed: WhatsApp Chat widget group option not working on mobile devices.<\\/li>\\n<li>Fixed: Hotspots Horizontal Position option not working for RTL sites in Image Hotspots widget.<\\/li>\\n<li>Fixed: Compatibility issues with WordPress 5.5.<\\/li>\\n<\\/ul>\\n<h4> 2.0.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Change Colors As Gradient option in Background Transition widget.<\\/li>\\n<li>Tweak: API Version updated for Facebook Reviews\\/Feed widgets.<\\/li>\\n<li>Fixed: Filter by Tags option letter case sensitive in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option for remote CSV files in Table widget.<\\/li>\\n<li>Tweak: Added Filter by Tags option in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: Instagram deprecated API replaced with Facebook API in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Color options for feed links in Twitter\\/Facebook Feed widgets.<\\/li>\\n<li>Tweak: Added Background Color, Margin and Padding option for readmore link in Twitter\\/Facebook Feed widgets.<\\/li>\\n<li>Fixed: Widgets with entrance animations not showing on tablet\\/mobile devices in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.4 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Instagram Feed widget now supports Instagram videos.<\\/li>\\n<li>Tweak: Added RTL Mode option in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added Image icon option in Tabs widget.<\\/li>\\n<li>Tweak: Added Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added Change Readmore text option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Render Type option in Lottie Animations section add-on.<\\/li>\\n<li>Tweak: Added Speed option in Flip Box widget.<\\/li>\\n<li>Fixed: Facebook Feed widget date not showing in Safari.<\\/li>\\n<li>Fixed: Social reviews carousel issue in RTL sites.<\\/li>\\n<li>Fixed: Vertical Image Comparison widget not working when label option is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fixed: Section add-on and some widgets not working since v2.0.2<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fixed: Section add-on and some widgets not working since v2.0.2<\\/li>\\n<\\/ul>\\n<h4> 2.0.2 <\\/h4>\\n<ul>\\n<li>Fixed: Image Layers scroll effects not working since v2.0.0<\\/li>\\n<li>Fixed: Premium Lottie section add-on editor overloading issue.<\\/li>\\n<li>Fixed: WhatsApp button not working on iOS mobile devices.<\\/li>\\n<\\/ul>\\n<h4> 2.0.1 <\\/h4>\\n<ul>\\n<li>Fixed: Freehand positioning conflict in Lottie Animations section add-on.<\\/li>\\n<li>Fixed: Entrance animation duplicate issue in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.0 <\\/h4>\\n<ul>\\n<li>New: Introducing Lottie Animations Integration for all the widgets including icon options.<\\/li>\\n<li>New: Added Premium Lottie Animations Section Add-on.<\\/li>\\n<li>Tweak: Added Overlay Background option to Alert Box widget.<\\/li>\\n<li>Tweak: Added Default Tab Index option to Tabs widget.<\\/li>\\n<li>Tweak: Added Border Radius option for button in Content Switcher widget.<\\/li>\\n<li>Tweak: Added Show\\/hide layers on different devices option in Parallax Add-on multi layers.<\\/li>\\n<li>Tweak: Added Floating Effects in Image Hotspots and Preview Window widgets.<\\/li>\\n<li>Fixed: Horizontal Scroll not scrolling below last slide on Snappy effect.<\\/li>\\n<li>Fixed: Widgets masonry layout issues on the editor on Chrome browser.<\\/li>\\n<li>Fixed: Table widget responsive option not working on tablets.<\\/li>\\n<li>Fixed: Instagram Feed new API not working for logged out users.<\\/li>\\n<li>Fixed: Instagram login button not working when Facebook Reviews widget is disabled.<\\/li>\\n<li>Fixed: Conflict with Pinpoint Booking System Plugin shortcodes.<\\/li>\\n<li>Fixed: Multi Scroll widget Left\\/Right Section Width option override previous widgets.<\\/li>\\n<li>Fixed: PHP error <code>Trying to access array offer on value of type bool<\\/code> in \\/white-label\\/admin.php.<\\/li>\\n<li>Fixed: Console error <code>jQuery is not defined<\\/code> in Image Hotspots widget.<\\/li>\\n<li>Fixed: Compatibility errors with PHP v7.0<\\/li>\\n<\\/ul>\\n<h4> 1.9.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added new API options for Instagram Feed widget.<\\/li>\\n<li>Fixed: Horizontal Scroll widget not working on RTL sites.<\\/li>\\n<li>Fixed: Opacity floating effect now working in Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Hover Text\\/Icon Color option for Trigger Button in Magic Section widget.<\\/li>\\n<li>Tweak: Added Opacity to Float Effects in Image Layers widget.<\\/li>\\n<li>Tweak: Change &quot;Read More&quot; link text option added in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Added <code>Mouse Tilt<\\/code> option in Icon Box widget.<\\/li>\\n<li>Tweak: Get \'alt\' attribute for images in iHover widget.<\\/li>\\n<li>Fixed: Dynamic links not working for some elements.<\\/li>\\n<li>Fixed: Warning <code>Trying to access array offset on value of type bool<\\/code> in section add-ons.<\\/li>\\n<\\/ul>\\n<h4> 1.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for dynamic fields in all social media widgets.<\\/li>\\n<li>Fixed: Scrolling issues in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Console error <code>ReferenceError: module is not defined<\\/code><\\/li>\\n<\\/ul>\\n<h4> 1.9.0 <\\/h4>\\n<ul>\\n<li>New: Added Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added <code>Animation Duration<\\/code> option in Animated Gradient section add-on.<\\/li>\\n<li>Tweak: Added Chinese to Language option for Facebook Messenger Chat widget.<\\/li>\\n<li>Tweak: Added <code>Whole Box Link<\\/code> option in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Load Chart on Scroll\\/Page Load<\\/code> option in Charts widget.<\\/li>\\n<li>Tweak: Added <code>Animation Duration<\\/code> option in Charts widget.<\\/li>\\n<li>Fixed: Filters by rating not working properly when review rating is not set in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.8 <\\/h4>\\n<ul>\\n<li>Tweak: Improved <code>Filter By Language<\\/code> option in Google Reviews widget.<\\/li>\\n<li>Fixed: Spacings not applied on tooltips templates in Image Hotspots widget.<\\/li>\\n<li>Fixed: Colors applied on <code>Whole Box Link<\\/code> in iHover widget.<\\/li>\\n<li>Fixed: Rating Schema in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Pagination<\\/code> options in Table widget.<\\/li>\\n<li>Tweak: Added <code>Carousel<\\/code> options in Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.6 <\\/h4>\\n<ul>\\n<li>Tweak: Now, you can remove all header cells in Table widget.<\\/li>\\n<li>Tweak: Added <code>Hover Text Animation<\\/code> switcher option in Flip Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added new effects for Ken Burns add-on.<\\/li>\\n<li>Tweak: Added <code>Reverse Direction<\\/code> for mousemove parallax in Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Link<\\/code> option for header cells in Table widget.<\\/li>\\n<li>Fixed: <code>Transition Speed<\\/code> option not working in Ken Burns section add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.8.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Padding<\\/code> option for container in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Blend Mode<\\/code> option to iHover, Image Hotspots and Image Layers widgets.<\\/li>\\n<li>Tweak: Added <code>Filter by Tags<\\/code> option to Instagram Feed widget.<\\/li>\\n<li>Fixed: Lightbox not working in Instagram Feed widget.<\\/li>\\n<li>Fixed: Console errors on IE due to Background Transition widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Floating Effects<\\/code> to Image Layers widget.<\\/li>\\n<li>Tweak: Added <code>Zoom In\\/Out<\\/code> option for each layer in Ken Burns add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.8.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added four new effects to Flip Box widget.<\\/li>\\n<li>Tweak: 3D flip effect animation enhanced in Flip Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.9 <\\/h4>\\n<ul>\\n<li>Tweak: Now you can set different style to each hotspot item in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added link option for Button in Alert Box widget.<\\/li>\\n<li>Tweak: Added Hover Background Color option Alert Box widget.<\\/li>\\n<li>Fixed: Not all ratings are pulled in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added Spinner styling option for loading spinner in Instagram Feed widget.<\\/li>\\n<li>Fixed: <code>$<\\/code> is not defined in Facebook Reviews and Feed widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.7.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Button<\\/code> option to iHover widget.<\\/li>\\n<li>Tweak: Added <code>Hide Plugin Row Meta<\\/code> and <code>Hide Plugin Changelog Link<\\/code> to plugin White Labeling options.<\\/li>\\n<li>Fixed: Background Transition widget not working with <code>RGB<\\/code> colors.<\\/li>\\n<li>Fixed: Console errors with invalid sections CSS IDs in Background Transition widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>CSS Filter<\\/code> for normal\\/hover state in Image Hotspots widget.<\\/li>\\n<li>Fixed: Grey line appears by default in Image Layers widget.<\\/li>\\n<li>Fixed: Even Layout not working with Carousel option enabled in all Reviews widgets.<\\/li>\\n<li>Fixed: Carousel slides not appearing on RTL sites in all Reviews widgets.<\\/li>\\n<li>Fixed: SVG icons size option not working in all widgets.<\\/li>\\n<li>Fixed: Link title and icon are not aligned in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.5 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Background Transition widget improved.<\\/li>\\n<li>Fixed: Caching is not applied on place data in Yelp Reviews widget.<\\/li>\\n<li>Fixed: Nested Premium Tabs not appearing.<\\/li>\\n<li>Fixed: Active Tab box shadow option not applied on the same selector in normal\\/hover in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option <code>Reload Reviews Once Every<\\/code> in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.7.3 <\\/h4>\\n<ul>\\n<li>Fixed: Instagram Feed widget not working on IE browsers.<\\/li>\\n<\\/ul>\\n<h4> 1.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Render First Row As<\\/code> option in Table widget.<\\/li>\\n<li>Fixed: Flipbox widget <code>Whole Box<\\/code> link option is not working.<\\/li>\\n<li>Fixed: Default icon is not working in iHover widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.1 <\\/h4>\\n<ul>\\n<li>New: Added Color Transition widget.<\\/li>\\n<li>Tweak: Get Instagram feed by Access Token only.<\\/li>\\n<li>Tweak: Added dynamic field support for CSV file in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.0 <\\/h4>\\n<ul>\\n<li>Fixed: Instagram Feed loading spinner does not appear on preview page.<\\/li>\\n<\\/ul>\\n<h4> 1.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Hover Color<\\/code> option for title\\/icon in Tabs widget.<\\/li>\\n<li>Fixed: Active tab Margin\\/Padding issue in Tabs widget.<\\/li>\\n<li>Fixed: Vertical Tabs widget alignment issue.<\\/li>\\n<li>Fixed: Security bugs fixed.<\\/li>\\n<\\/ul>\\n<h4> 1.6.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Schema Support<\\/code> option for all Reviews widgets.<\\/li>\\n<li>Tweak: Font Awesome 5 compatibility for all widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.6.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Minimum Value<\\/code> option in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Line Width<\\/code> option for grid lines in Charts widget.<\\/li>\\n<li>Tweak: Added transition for Image Accordion overlay color.<\\/li>\\n<li>Fixed: Parallax section add-on does not work on frontend pages.<\\/li>\\n<\\/ul>\\n<h4> 1.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load assets files for section add-ons only when needed to improve performance.<\\/li>\\n<li>Tweak: Added <code>Step Size<\\/code> option for Radar type Charts.<\\/li>\\n<li>Fixed: Tabs nav container changed to div to prevent styling issues.<\\/li>\\n<\\/ul>\\n<h4> 1.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: <code>Reviews Word Length<\\/code> option does not work for non-latin characters in all reviews widgets.<\\/li>\\n<li>Fixed: <code>Notice: Undefined variable: tool_tips_image_url<\\/code> in Preview Window widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Alignment<\\/code> option in iHover widget.<\\/li>\\n<li>Fixed: <code>Border Color<\\/code> option missing for <code>Style 3<\\/code> in Tabs widget.<\\/li>\\n<li>Fixed: Bottom positioned Magic Section appears after page load.<\\/li>\\n<\\/ul>\\n<h4> 1.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Facebook Login<\\/code> Button to Premium Facebook Feed widget for easier feed pull.<\\/li>\\n<li>Fixed: <code>Maximum Value<\\/code> option added to Radar chat type in Charts widget.<\\/li>\\n<li>Fixed: <code>Carousel Arrows Position<\\/code> option shows when <code>Autoplay<\\/code> option is enabled in Yelp Reviews widget.<\\/li>\\n<li>Fixed: Loader spinner not showing on the preview page in Facebook\\/Twitter Feed.<\\/li>\\n<\\/ul>\\n<h4> 1.6.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>RTL Mode<\\/code> option for Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Fixed: <code>Transition Speed<\\/code> option not working for Ken Burns section add-on.<\\/li>\\n<li>Fixed: Image Layers <code>Freehand<\\/code> reposition not working if page contains Premium Carousel widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Review Length<\\/code> option to Facebook Reviews widget.<\\/li>\\n<li>Fixed: Images pixelated when size is increased in Facebook Reviews widget.<\\/li>\\n<li>Fixed: Messenger Chat icon not showing on mobile devices.<\\/li>\\n<li>Fixed: Cells alignment issue with multi-line text in Table widget.<\\/li>\\n<li>Fixed: Blank line below Instagram images for some themes.<\\/li>\\n<\\/ul>\\n<h4> 1.5.9 <\\/h4>\\n<ul>\\n<li>New: Added Yelp Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Facebook Login<\\/code> Button to Premium Facebook Reviews widget for easier reviews pull.<\\/li>\\n<li>Tweak: Added <code>Review Length<\\/code> option in Google Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Responsive Controls<\\/code> for Premium Particles section add-on.<\\/li>\\n<li>Tweak: Added <code>Table Layout<\\/code> option in Premium Table widget.<\\/li>\\n<li>Fixed: Divider and text in Premium Divider widget are not centered in some themes.<\\/li>\\n<li>Fixed: <code>Button Size<\\/code> in Unfold widget not applied on the front-end.<\\/li>\\n<li>Fixed: Back side <code>Link<\\/code>  unclickable on Microsoft Edge in Flip Box widget.<\\/li>\\n<li>Fixed: Twitter\\/Facebook Feed time elapsed Singular\\/Plural issue.<\\/li>\\n<li>Fixed: Clipped reviewer profile picture in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.8 <\\/h4>\\n<ul>\\n<li>New: Added Image Accordion widget.<\\/li>\\n<li>Fixed: Title\\/Icon are not horizontally centered in styles 3,4 in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.7 <\\/h4>\\n<ul>\\n<li>Tweak: <code>Read More<\\/code> button redirects to post instead of page in Facebook Feed widget.<\\/li>\\n<li>Fixed: Carousel arrows styling only works on the editor page in Google\\/Facebook Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Theme<\\/code> option for lightbox in Instagram widget.<\\/li>\\n<li>Tweak: Added <code>Date Format<\\/code> option in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Fade Speed<\\/code> option for Ken Burns section add-on.<\\/li>\\n<li>Fixed: Posts` images don\'t appear in Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Reviews date doesn\'t appear with <code>Place Info<\\/code> option disabled.<\\/li>\\n<li>Fixed: Right templates shift to left by <code>1px<\\/code> in Multi Scroll widget.<\\/li>\\n<li>Fixed: Facebook Feed widget doesn\'t work with APIs v3.3.<\\/li>\\n<\\/ul>\\n<h4> 1.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core refactored to improve performance.<\\/li>\\n<\\/ul>\\n<h4> 1.5.3 <\\/h4>\\n<ul>\\n<li>Fixed: Charts animation doesn\'t work when height option is set.<\\/li>\\n<li>Fixed: <code>Tabs Background<\\/code> overrides lists background for <code>Style 3<\\/code> in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.2 <\\/h4>\\n<ul>\\n<li>Fixed: <code>Dynamic Content<\\/code> doesn\'t work when <code>ACF Field<\\/code> is selected in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: <code>Tilt Mouse Interactivity<\\/code> doesn\'t work on IE for Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.0 <\\/h4>\\n<ul>\\n<li>Fixed: Image Comparison broken on IE with Section Vertical Parallax enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.4.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Outer Background Color<\\/code> option for container in Preview Window widget.<\\/li>\\n<li>Fixed: Magic Section content appears until page is loaded.<\\/li>\\n<li>Fixed: Image Comparison broken on IE with Image Layers scroll effects enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.4.8 <\\/h4>\\n<ul>\\n<li>Tweak: <code>WPML Compatibility<\\/code> for all widgets.<\\/li>\\n<li>Fixed: License deactivation issues.<\\/li>\\n<li>Fixed: Google reCaptcha doesn\'t work after v1.4.8<\\/li>\\n<li>Fixed: Particles are stretched on small screens.<\\/li>\\n<li>Fixed: Add-ons don\'t load with <code>MyListing<\\/code> theme.<\\/li>\\n<\\/ul>\\n<h4> 1.4.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Stretch Image<\\/code> option for background image in Image Hotspots widget.<\\/li>\\n<li>Fixed: Console error <code>UniversalTilt undefined<\\/code> on IE browser with Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.4.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Dynamic Field<\\/code> support for Instagram widget.<\\/li>\\n<li>Fixed: <code>Invalid Character on line 3361<\\/code> after v1.3.5<\\/li>\\n<\\/ul>\\n<h4> 1.4.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Scroll Effects<\\/code> for images in Image Layers widget.<\\/li>\\n<li>Tweak: Added <code>Freehand<\\/code> postioning, resizing features for layers in Image Layers widget and Multi Layer Parallax.<\\/li>\\n<li>Tweak: Added <code>Freehand<\\/code> postioning feature for Image Hotspots widget.<\\/li>\\n<li>Tweak: Added <code>Date Format<\\/code> option for Google Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Dynamic Field<\\/code> support for all <code>URL<\\/code> fields.<\\/li>\\n<li>Fixed: Content Switcher widget button issue when browse back page button is clicked.<\\/li>\\n<li>Fixed: <code>Save Settings<\\/code> button doesn\'t work in White Labeling Dashboard submenu.<\\/li>\\n<li><strong>Important: This update includes deep enhancements for Image Hotspots, Image Layers widgets and Parallax Add-on. So, please review your existing pages.<\\/strong><\\/li>\\n<\\/ul>\\n<h4> 1.4.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Data Separator<\\/code> optiuon for CSV files in Table widget.<\\/li>\\n<li>Fixed: Layout issues on Microsoft IE browser.<\\/li>\\n<li>Fixed: <code>Notice: Undefined index: premium_parallax_android_support<\\/code> , <code>premium_parallax_ios_support<\\/code> in Parallax add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.4.3 <\\/h4>\\n<ul>\\n<li>Tweak: Prevent adding inline styles\\/scripts for Section add-ons.<\\/li>\\n<li>Tweak: Changed Particles Add-on <code>JSON<\\/code> code area from <code>TEXTAREA<\\/code> to <code>CODE<\\/code><\\/li>\\n<li>Tweak: Ability to change <code>Live Search<\\/code> and <code>Show Records<\\/code> strings in Table widget.<\\/li>\\n<li>Tweak: Wait images to load before triggering <code>Masonry<\\/code> layout in Faceook Feed widget.<\\/li>\\n<li>Fixed: Cells align right issue on Google Chrome in Table widget.<\\/li>\\n<li>Fixed: Premium Divider issues with <code>Elementor Custom Positioning<\\/code> option.<\\/li>\\n<\\/ul>\\n<h4> 1.4.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Show Records<\\/code> option in Table widget.<\\/li>\\n<li>Tweak: Added <code>Blur On Hover<\\/code> effect in Table widget.<\\/li>\\n<li>Tweak: Added <code>responsive controls<\\/code> for Search field in Table widget.<\\/li>\\n<li>Tweak: Added <code>Text Color<\\/code> option for Search field in Table widget.<\\/li>\\n<li>Tweak: Added <code>Settings<\\/code> to plugin action links on <code>Plugins<\\/code> page.<\\/li>\\n<\\/ul>\\n<h4> 1.4.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Left\\/Right Section Width<\\/code> option to control width ratio in Multi Scroll widget.<\\/li>\\n<li>Tweak: Added <code>Show Caption<\\/code> option to show photo caption in Instagram widget.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> options group for hover state in Instagram widget.<\\/li>\\n<\\/ul>\\n<h4> 1.4.0 <\\/h4>\\n<ul>\\n<li>Fixed: Premium Twitter Feed does not work.<\\/li>\\n<\\/ul>\\n<h4> 1.3.9 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Parallax background position, repeat and size inherit from Elementor responsive background options.<\\/li>\\n<li>Tweak: Added responsive controls for <code>Arrow Size<\\/code> option in Premium Facebook\\/Google Reviews widgets.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> option for images for trigger and preview images in Preview Image widget.<\\/li>\\n<li>Tweak: Code refactor to enhance plugin performance speed.<\\/li>\\n<\\/ul>\\n<h4> 1.3.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Number of Columns<\\/code> option in Premium Facebook\\/Google Review and Facebook\\/Twitter widgets.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> option for images in Premium Behance\\/Instagram Feed and iHover widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.3.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Images per Row<\\/code> option in Premium Instagram widget.<\\/li>\\n<li>Tweak: Added <code>Widgets Badge<\\/code> option to white labeling to change widgets` icons badge text.<\\/li>\\n<li>Fixed: Enable Parallax on Android\\/iOS does not work for Parallax section add-on.<\\/li>\\n<li>Fixed: Different images height when <code>Masonry<\\/code> option is disabled in Premium Intagram widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.6 <\\/h4>\\n<ul>\\n<li>Fixed: Warning: require_once(\\/premium-addons-pro-includes\\/deps\\/json.php): failed to open stream: No such file or directory.<\\/li>\\n<li>Fixed: Images order when <code>Masonry<\\/code> option is disabled in Premium Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.5 <\\/h4>\\n<ul>\\n<li>Tweak: JS enhancements in Facebook, Twitter and Instagram elements to improve plugin performance.<\\/li>\\n<li>Tweak: Added <code>Infinite<\\/code> option for single image in Ken Burns add-on.<\\/li>\\n<li>Fixed: Set Tabs content to Full Width issue.<\\/li>\\n<li>Fixed: Posts overlapping when masonry option enabled in Premium Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.4 <\\/h4>\\n<ul>\\n<li>Tweak: JS enhancements in Charts, Facebook\\/Google Reviews, Image layers, Multi Scroll , and Tabs elements to improve plugin performance.<\\/li>\\n<li>Tweak: Dynamic data support for <code>Image<\\/code> in Premium Divider widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.3 <\\/h4>\\n<ul>\\n<li>Tweak: Dynamic data support in Premium Ken Burns add-on.<\\/li>\\n<li>Fixed: Image Hotspots widget issue on preview page.<\\/li>\\n<\\/ul>\\n<h4> 1.3.2 <\\/h4>\\n<ul>\\n<li>Fixed: Pointer cursor for cells with <code>Link<\\/code> option disabled in Premium Table widget.<\\/li>\\n<li>Fixed: overlapping issue when iHover widget <code>Link<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Tabs widget layout issue on iOS devices.<\\/li>\\n<\\/ul>\\n<h4> 1.3.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Border Width<\\/code> option for each dataset in Premium Charts widget.<\\/li>\\n<li>Fixed: <code>Warning: Creating default object from empty value<\\/code> in Premium Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.0 <\\/h4>\\n<ul>\\n<li>Tweak: Unnecessary <code>esc_html()<\\/code> function removed.<\\/li>\\n<li>Tweak: Unnecessary conditions removed to enhance editor page loading speed.<\\/li>\\n<\\/ul>\\n<h4> 1.2.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Second Fill Color<\\/code> option to create gradients in Line, Bar and Horizontal Bar charts.<\\/li>\\n<li>Tweak: Unnecessary functions removed from Facebook Feed, Charts, Behance and Image Comparison widgets to enhance performance.<\\/li>\\n<\\/ul>\\n<h4> 1.2.8 <\\/h4>\\n<ul>\\n<li>Tweak: CSS files loaded only when required to enhance plugin performance.<\\/li>\\n<li>Tweak: Show label next to value on Pie\\/Doughnut Premium Chart hover.<\\/li>\\n<\\/ul>\\n<h4> 1.2.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Show Values on Chart<\\/code> option to Pie\\/Doughnut chart in Premium Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added language option to Premium Messenger Chat widget.<\\/li>\\n<li>Fixed: <code>View Details<\\/code> link appears for Premium Add-ons for Elementor with White Labeling enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.2.5 <\\/h4>\\n<ul>\\n<li>Tweak: Formatting Y-Axis labels numbers in Premium Charts widget.<\\/li>\\n<li>Tweak: Ken Burns can now be used with only one image.<\\/li>\\n<li>Fixed: Charts not visible when inserted in Elementor Accordion widget.<\\/li>\\n<li>Fixed: CSV files don\'t appear in Media in Premium Tables widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Overlay Color option to Premium Ken Burns section add-on.<\\/li>\\n<li>Fixed: <code>Detected usage of deprecated noAndroid<\\/code> with Premium Parallax section add-on.<\\/li>\\n<li>Fixed: Premium Messenger Chat not working after Facebook latest Apps update.<\\/li>\\n<\\/ul>\\n<h4> 1.2.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added vertical tabs sections width option in Premium Tabs widget.<\\/li>\\n<li>Tweak: Added Filter by language option in Premium Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added arrow size and padding options to carousel arrows in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Tweak: Dynamic data support in Premium Charts widget.<\\/li>\\n<li>Tweak: Shortcodes support using text editor in Premium Content Switcher widget.<\\/li>\\n<li>Fixed: Charts issue when inserted inside Premium Modal Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.1 <\\/h4>\\n<ul>\\n<li>Fixed: Projects with grid images in Premium Behance widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added Column Width option in Premium Charts widget.<\\/li>\\n<li>Tweak: Added Carousel Autoplay speed option in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Tweak: Added Carousel Arrows position option in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Fixed: Carousel responsive issues in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Fixed: Reviews issue when no stars is returned with review.<\\/li>\\n<\\/ul>\\n<h4> 1.1.9 <\\/h4>\\n<ul>\\n<li>Tweak: Hide specific sections on mobiles\\/tables option added to Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.8 <\\/h4>\\n<ul>\\n<li>Fixed: Sections order on mobile\\/tablets in Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.7 <\\/h4>\\n<ul>\\n<li>Fixed: Responsive issues in Premium Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.6 <\\/h4>\\n<ul>\\n<li>New: Added Multi Scroll widget.<\\/li>\\n<li>Tweak: Added Margin Option for Magic Section widget in active case.<\\/li>\\n<li>Fixed: Google Reviews unloaded place image.<\\/li>\\n<li>Fixed: Tabs background\\/arrow color issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.5 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Table widget performance enhanced.<\\/li>\\n<li>Tweak: Added Dynamic Images option for all widgets.<\\/li>\\n<li>Tweak: Added Dynamic place id option for Premium Google Reviews widget.<\\/li>\\n<li>Tweak: Added Carousel option for Premium Facebook\\/Google reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.4 <\\/h4>\\n<ul>\\n<li>Fixed: Premium Tabs conflict issue.<\\/li>\\n<li>Fixed: Facebook\\/Twitter Feed read more issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.3 <\\/h4>\\n<ul>\\n<li>Fixed: Facebook Feed widget conflict issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added convert values to percentage in Premium Charts widget.<\\/li>\\n<li>Fixed: Call to a member function get_error_message() on array after license activation.<\\/li>\\n<\\/ul>\\n<h4> 1.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core enhancement for faster performance.<\\/li>\\n<li>Tweak: Premium Divider widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Flip Box widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Icon Box widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Image Layers widget performance enhanced.<\\/li>\\n<li>Tweak: Premium iHover widget performance enhanced.<\\/li>\\n<\\/ul>\\n<h4> 1.1.0 <\\/h4>\\n<ul>\\n<li>Fixed: Tabs issue on IE browser.<\\/li>\\n<li>Fixed: Group Control issue in Premium Facebook\\/Twitter widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.0.9 <\\/h4>\\n<ul>\\n<li>Fixed: Warning &quot;Invalid argument supplied for foreach() in \\/premium-addons-pro\\/widgets\\/premium-tables.php on line 1567&quot;.<\\/li>\\n<\\/ul>\\n<h4> 1.0.8 <\\/h4>\\n<ul>\\n<li>Fixed: License not Valid after trying to activate license.<\\/li>\\n<\\/ul>\\n<h4> 1.0.7 <\\/h4>\\n<ul>\\n<li>New: Added WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.6 <\\/h4>\\n<ul>\\n<li>Fixed: Image size issue in Premium Parallax addon.<\\/li>\\n<li>Fixed: Transparent images grey background issue.<\\/li>\\n<li>Fixed: Invisible charts issue.<\\/li>\\n<\\/ul>\\n<h4> 1.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: App ID and App secret are changed to Access Token in Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.4 <\\/h4>\\n<ul>\\n<li>Tweak: Animations starts on scrolling in Premium Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.3 <\\/h4>\\n<ul>\\n<li>New: Added Facebook Feed element.<\\/li>\\n<\\/ul>\\n<h4> 1.0.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Background Size\\/Position options in Premium Section Parallax.<\\/li>\\n<li>Fixed: Instagram Feed grid issue when Masonry is disabled.<\\/li>\\n<li>Fixed: Fatal error: Can\'t use function return value in write context for PHP versions below 5.5<\\/li>\\n<\\/ul>\\n<h4> 1.0.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added URLs option to each dataset in Premium Charts widget.<\\/li>\\n<li>Tweak: Added image fill option in Premium Ken Burns.<\\/li>\\n<\\/ul>\\n<h4> 1.0.0 <\\/h4>\\n<ul>\\n<li>Initial stable release.<\\/li>\\n<\\/ul>\"],\"installation\":[\"<h4> Minimum Requirements <\\/h4>\\n<ul>\\n<li>WordPress 4.5 or greater<\\/li>\\n<li>PHP version 5.4 or greater<\\/li>\\n<li>MySQL version 5.0 or greater<\\/li>\\n<\\/ul>\\n<h4> Installation Instructions <\\/h4>\\n<ul>\\n<li>First make sure that Elementor Page Builder and Premium Addons for Elementor are installed, As this plugin works only with both of them.<\\/li>\\n<li>Download the plugin then Upload it to the plugin folder: \\/wp-content\\/plugins\\/ or install it through the WordPress plugins screen directly.<\\/li>\\n<li>Activate the plugin through the \\u2018Plugins\\u2019 screen in WordPress<\\/li>\\n<li>You can find Premium Addons Elements under the category \\u201cPremium Addons\\u201d on your Elementor element\\/widget list.<\\/li>\\n<\\/ul>\"],\"plugin\":\"premium-addons-pro\\/premium-addons-pro-for-elementor.php\",\"id\":\"premium-addons-pro\\/premium-addons-pro-for-elementor.php\"}\";}","no");
INSERT INTO 7ja_options VALUES("16310","envato_elements_version","2.0.13","yes");
INSERT INTO 7ja_options VALUES("16311","envato_elements_install_time","1674704230","yes");
INSERT INTO 7ja_options VALUES("16336","wpcf7","a:2:{s:7:\"version\";s:5:\"5.9.3\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1674704351;s:7:\"version\";s:5:\"5.7.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}","yes");
INSERT INTO 7ja_options VALUES("16374","pp_install_date","2023-01-26 03:39:20","yes");
INSERT INTO 7ja_options VALUES("16375","pp_plugin_activated","yes","yes");
INSERT INTO 7ja_options VALUES("16381","elementor_disable_color_schemes","yes","yes");
INSERT INTO 7ja_options VALUES("16382","elementor_disable_typography_schemes","yes","yes");
INSERT INTO 7ja_options VALUES("16822","elementskit-lite__banner_last_check","1714495594","yes");
INSERT INTO 7ja_options VALUES("16823","elementskit-lite__banner_data","O:8:\"stdClass\":10:{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:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Ramadan sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";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:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Ramadan sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";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:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">holiday sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";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:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">holiday sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";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:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Black friday sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $240 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 40% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";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:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Black friday sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $240 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 40% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";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:\"10010872\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010872;s:5:\"title\";s:33:\"Wpmet Notice Halloween 23 Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1698192000;s:3:\"end\";i:1699574400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/notice/hallo23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:540:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Halloween sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $210 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:65:\"https://api.wpmet.com/auth/wp-content/uploads/2023/04/genie-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:\"10010871\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010871;s:5:\"title\";s:35:\"Wpmet Notice Halloween 23 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1698192000;s:3:\"end\";i:1699574400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/notice/hallo23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:540:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Halloween sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $210 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:65:\"https://api.wpmet.com/auth/wp-content/uploads/2023/04/genie-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:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";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:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";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:\"\";}}}","yes");
INSERT INTO 7ja_options VALUES("16947","pa_elements_41b58cfbd","a:0:{}","no");
INSERT INTO 7ja_options VALUES("16948","pa_edit_41b58cfbd","1699920545","no");
INSERT INTO 7ja_options VALUES("19254","pa_elements_9f8a784c8","a:0:{}","no");
INSERT INTO 7ja_options VALUES("19255","pa_edit_9f8a784c8","1713282991","no");
INSERT INTO 7ja_options VALUES("20773","elementskit_options","a:1:{s:17:\"megamenu_settings\";a:1:{s:16:\"menu_location_11\";a:1:{s:10:\"is_enabled\";i:0;}}}","yes");
INSERT INTO 7ja_options VALUES("20933","pp_templates_library","a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:10:{i:0;s:5:\"About\";i:1;s:7:\"Contact\";i:2;s:4:\"FAQs\";i:3;s:8:\"Features\";i:4;s:7:\"Gallery\";i:5;s:4:\"Hero\";i:6;s:7:\"Pricing\";i:7;s:8:\"Services\";i:8;s:4:\"Team\";i:9;s:12:\"Testimonials\";}}s:4:\"page\";a:1:{s:10:\"categories\";N;}}s:10:\"categories\";s:97:\"[\"About\",\"Contact\",\"FAQs\",\"Features\",\"Gallery\",\"Hero\",\"Pricing\",\"Services\",\"Team\",\"Testimonials\"]\";s:9:\"templates\";a:122:{i:0;a:13:{s:2:\"id\";i:92;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593414217;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593414217;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:17:\"[\"about\",\"watch\"]\";s:17:\"has_page_settings\";b:0;}i:1;a:13:{s:2:\"id\";i:278;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593429838;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:110:\"https://demo.powerpackelements.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593429838;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:27:\"[\"about\",\"flavours\",\"food\"]\";s:17:\"has_page_settings\";b:0;}i:2;a:13:{s:2:\"id\";i:117;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593415187;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593415187;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:20:\"[\"about\",\"graphics\"]\";s:17:\"has_page_settings\";b:0;}i:3;a:13:{s:2:\"id\";i:141;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-3-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593416658;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593416658;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:17:\"[\"about\",\"story\"]\";s:17:\"has_page_settings\";b:0;}i:4;a:13:{s:2:\"id\";i:152;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-4-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593417324;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593417324;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:19:\"[\"about\",\"boating\"]\";s:17:\"has_page_settings\";b:0;}i:5;a:13:{s:2:\"id\";i:170;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593419870;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593419870;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:17:\"[\"about\",\"phone\"]\";s:17:\"has_page_settings\";b:0;}i:6;a:13:{s:2:\"id\";i:185;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-6-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593420403;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593420403;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:17:\"[\"about\",\"beach\"]\";s:17:\"has_page_settings\";b:0;}i:7;a:13:{s:2:\"id\";i:213;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593421357;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593421357;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:18:\"[\"about\",\"typing\"]\";s:17:\"has_page_settings\";b:0;}i:8;a:13:{s:2:\"id\";i:229;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-8-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593427712;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593427712;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:16:\"[\"about\",\"food\"]\";s:17:\"has_page_settings\";b:0;}i:9;a:13:{s:2:\"id\";i:255;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593429117;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593429117;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:18:\"[\"about\",\"dreams\"]\";s:17:\"has_page_settings\";b:0;}i:10;a:13:{s:2:\"id\";i:3531;s:5:\"title\";s:9:\"Adventure\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/adventure-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603691041;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/adventure/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603691041;s:10:\"human_date\";s:16:\"October 26, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:11;a:13:{s:2:\"id\";i:4437;s:5:\"title\";s:6:\"Agency\";s:9:\"thumbnail\";s:79:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/agency-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603972476;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603972476;s:10:\"human_date\";s:16:\"October 29, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:12;a:13:{s:2:\"id\";i:5062;s:5:\"title\";s:12:\"Architecture\";s:9:\"thumbnail\";s:85:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/Architecture-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1605081063;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:114:\"https://demo.powerpackelements.com/blocks/architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1605081063;s:10:\"human_date\";s:17:\"November 11, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:13;a:13:{s:2:\"id\";i:4570;s:5:\"title\";s:12:\"Black Friday\";s:9:\"thumbnail\";s:78:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/black-friday.png\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1604042655;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:114:\"https://demo.powerpackelements.com/blocks/black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1604042655;s:10:\"human_date\";s:16:\"October 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:14;a:13:{s:2:\"id\";i:5166;s:5:\"title\";s:4:\"Cafe\";s:9:\"thumbnail\";s:77:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/cafe-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1605081334;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:106:\"https://demo.powerpackelements.com/blocks/cafe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1605081334;s:10:\"human_date\";s:17:\"November 11, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:15;a:13:{s:2:\"id\";i:4316;s:5:\"title\";s:9:\"Cafe Home\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/cafe-home-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603972410;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/cafe-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603972410;s:10:\"human_date\";s:16:\"October 29, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:16;a:13:{s:2:\"id\";i:4165;s:5:\"title\";s:10:\"Car Dealer\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/car-dealer.png\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603884036;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/car-dealer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603884036;s:10:\"human_date\";s:16:\"October 28, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:17;a:13:{s:2:\"id\";i:4034;s:5:\"title\";s:6:\"Church\";s:9:\"thumbnail\";s:79:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/church-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603800402;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/church/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603800402;s:10:\"human_date\";s:16:\"October 27, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:18;a:13:{s:2:\"id\";i:83;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1588859317;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1588859317;s:10:\"human_date\";s:11:\"May 7, 2020\";s:4:\"tags\";s:19:\"[\"contact\",\"water\"]\";s:17:\"has_page_settings\";b:0;}i:19;a:13:{s:2:\"id\";i:589;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593510200;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593510200;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:20;a:13:{s:2:\"id\";i:629;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-11.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593511723;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593511723;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:21;a:13:{s:2:\"id\";i:338;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593494101;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593494101;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:22;a:13:{s:2:\"id\";i:402;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593496786;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593496786;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:20:\"[\"contact\",\"travel\"]\";s:17:\"has_page_settings\";b:0;}i:23;a:13:{s:2:\"id\";i:432;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:77:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-4-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593498805;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593498805;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:24;a:13:{s:2:\"id\";i:460;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593500589;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593500589;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:25;a:13:{s:2:\"id\";i:482;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593501520;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593501520;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:26;a:13:{s:2:\"id\";i:518;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593502575;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593502575;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:21:\"[\"bicycle\",\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:27;a:13:{s:2:\"id\";i:532;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593503384;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593503384;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:28;a:13:{s:2:\"id\";i:550;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593504454;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593504454;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:29;a:13:{s:2:\"id\";i:5437;s:5:\"title\";s:17:\"Digital marketing\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2021/07/digital-marketing.png\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1626869205;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:119:\"https://demo.powerpackelements.com/blocks/digital-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1626869205;s:10:\"human_date\";s:13:\"July 21, 2021\";s:4:\"tags\";s:21:\"[\"digital marketing\"]\";s:17:\"has_page_settings\";b:0;}i:30;a:13:{s:2:\"id\";i:2385;s:5:\"title\";s:11:\"Electrician\";s:9:\"thumbnail\";s:84:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/electrician-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1602589921;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:113:\"https://demo.powerpackelements.com/blocks/electrician/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1602589921;s:10:\"human_date\";s:16:\"October 13, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:31;a:13:{s:2:\"id\";i:748;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593580754;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593580754;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:31:\"[\"expensive\",\"faqs\",\"warranty\"]\";s:17:\"has_page_settings\";b:0;}i:32;a:13:{s:2:\"id\";i:867;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-10.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593594366;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/faqs-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593594366;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:33;a:13:{s:2:\"id\";i:765;s:5:\"title\";s:5:\"FAQ 2\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-2.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593581834;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593581834;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:22:\"[\"bluetooth\",\"device\"]\";s:17:\"has_page_settings\";b:0;}i:34;a:13:{s:2:\"id\";i:787;s:5:\"title\";s:5:\"FAQ 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-3.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593582700;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593582700;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:35;a:13:{s:2:\"id\";i:801;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:71:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faq-4.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593586148;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593586148;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:36;a:13:{s:2:\"id\";i:806;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:78:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faq-5-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593588234;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593588234;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:37;a:13:{s:2:\"id\";i:827;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-6-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593589791;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593589791;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:38;a:13:{s:2:\"id\";i:842;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-7.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593590476;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593590476;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:39;a:13:{s:2:\"id\";i:860;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-8.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593591769;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593591769;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:40;a:13:{s:2:\"id\";i:862;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-9.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593591814;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593591814;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:41;a:13:{s:2:\"id\";i:871;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593597714;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593597714;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:34:\"[\"design\",\"development\",\"feature\"]\";s:17:\"has_page_settings\";b:0;}i:42;a:13:{s:2:\"id\";i:1077;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593756173;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:113:\"https://demo.powerpackelements.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593756173;s:10:\"human_date\";s:12:\"July 3, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:43;a:13:{s:2:\"id\";i:893;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593598416;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593598416;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:32:\"[\"features\",\"payment\",\"support\"]\";s:17:\"has_page_settings\";b:0;}i:44;a:13:{s:2:\"id\";i:926;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593601084;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593601084;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:32:\"[\"connection\",\"humor\",\"support\"]\";s:17:\"has_page_settings\";b:0;}i:45;a:13:{s:2:\"id\";i:953;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593603042;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593603042;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:25:\"[\"application\",\"feature\"]\";s:17:\"has_page_settings\";b:0;}i:46;a:13:{s:2:\"id\";i:977;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593604008;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593604008;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:33:\"[\"community\",\"service\",\"support\"]\";s:17:\"has_page_settings\";b:0;}i:47;a:13:{s:2:\"id\";i:996;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593604488;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593604488;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:10:\"[\"videos\"]\";s:17:\"has_page_settings\";b:0;}i:48;a:13:{s:2:\"id\";i:1036;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593677335;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593677335;s:10:\"human_date\";s:12:\"July 2, 2020\";s:4:\"tags\";s:10:\"[\"mockup\"]\";s:17:\"has_page_settings\";b:0;}i:49;a:13:{s:2:\"id\";i:1057;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593745609;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593745609;s:10:\"human_date\";s:12:\"July 3, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:50;a:13:{s:2:\"id\";i:1075;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593756101;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593756101;s:10:\"human_date\";s:12:\"July 3, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:51;a:13:{s:2:\"id\";i:3757;s:5:\"title\";s:13:\"Food Delivery\";s:9:\"thumbnail\";s:86:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/food-delivery-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603715616;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:115:\"https://demo.powerpackelements.com/blocks/food-delivery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603715616;s:10:\"human_date\";s:16:\"October 26, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:52;a:13:{s:2:\"id\";i:3154;s:5:\"title\";s:9:\"Furniture\";s:9:\"thumbnail\";s:87:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/furniture-shop-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603193881;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/furniture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603193881;s:10:\"human_date\";s:16:\"October 20, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:53;a:13:{s:2:\"id\";i:1507;s:5:\"title\";s:9:\"Gallery 1\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-1.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594272929;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594272929;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:54;a:13:{s:2:\"id\";i:1578;s:5:\"title\";s:10:\"Gallery 10\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-10.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594277252;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/gallery-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594277252;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:55;a:13:{s:2:\"id\";i:1510;s:5:\"title\";s:9:\"Gallery 2\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-2.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594272989;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594272989;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:56;a:13:{s:2:\"id\";i:1513;s:5:\"title\";s:9:\"Gallery 3\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-3.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594273026;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594273026;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:57;a:13:{s:2:\"id\";i:1516;s:5:\"title\";s:9:\"Gallery 4\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-4.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594273062;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594273062;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:58;a:13:{s:2:\"id\";i:1519;s:5:\"title\";s:9:\"Gallery 5\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-5.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594274255;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594274255;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:59;a:13:{s:2:\"id\";i:1563;s:5:\"title\";s:9:\"Gallery 7\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-7.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594276146;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594276146;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:60;a:13:{s:2:\"id\";i:1566;s:5:\"title\";s:9:\"Gallery 8\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-8.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594276322;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594276322;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:61;a:13:{s:2:\"id\";i:1569;s:5:\"title\";s:9:\"Gallery 9\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-9.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594276678;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594276678;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:62;a:13:{s:2:\"id\";i:2841;s:5:\"title\";s:9:\"Gardening\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/gardening-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1602822499;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gardening/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1602822499;s:10:\"human_date\";s:16:\"October 16, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:63;a:13:{s:2:\"id\";i:3377;s:5:\"title\";s:3:\"Gym\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/gym-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603460085;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:105:\"https://demo.powerpackelements.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603460085;s:10:\"human_date\";s:16:\"October 23, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:64;a:13:{s:2:\"id\";i:1623;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/hero-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594307987;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594307987;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:65;a:13:{s:2:\"id\";i:1626;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/hero-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308041;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308041;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:66;a:13:{s:2:\"id\";i:1629;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/hero-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308119;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308119;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:67;a:13:{s:2:\"id\";i:1632;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308161;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308161;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:68;a:13:{s:2:\"id\";i:1635;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308221;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308221;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:69;a:13:{s:2:\"id\";i:2010;s:5:\"title\";s:8:\"Hero 5-1\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-5-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308260;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:110:\"https://demo.powerpackelements.com/blocks/hero-5-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308260;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:70;a:13:{s:2:\"id\";i:1641;s:5:\"title\";s:8:\"Hero 6-1\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/hero-6-1-1-scaled.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308308;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:110:\"https://demo.powerpackelements.com/blocks/hero-6-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308308;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:71;a:13:{s:2:\"id\";i:2027;s:5:\"title\";s:8:\"Hero 6-2\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-6-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308710;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:110:\"https://demo.powerpackelements.com/blocks/hero-6-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308710;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:72;a:13:{s:2:\"id\";i:1645;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-7-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594309312;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594309312;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:17:\"[\"fitness\",\"gym\"]\";s:17:\"has_page_settings\";b:0;}i:73;a:13:{s:2:\"id\";i:1643;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Home-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594310067;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594310067;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:21:\"[\"cafe\",\"restaurant\"]\";s:17:\"has_page_settings\";b:0;}i:74;a:13:{s:2:\"id\";i:2682;s:5:\"title\";s:9:\"Insurance\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/insurance-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603264950;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/insurance/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603264950;s:10:\"human_date\";s:16:\"October 21, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:75;a:13:{s:2:\"id\";i:4920;s:5:\"title\";s:15:\"Interior Design\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/interior-1-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1604563744;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:117:\"https://demo.powerpackelements.com/blocks/interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1604563744;s:10:\"human_date\";s:16:\"November 5, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:76;a:13:{s:2:\"id\";i:3655;s:5:\"title\";s:10:\"Plantation\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/plantation-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603708644;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/plantation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603708644;s:10:\"human_date\";s:16:\"October 26, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:77;a:13:{s:2:\"id\";i:4658;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/portfolio-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1605080398;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1605080398;s:10:\"human_date\";s:17:\"November 11, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:78;a:13:{s:2:\"id\";i:1088;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594028671;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594028671;s:10:\"human_date\";s:12:\"July 6, 2020\";s:4:\"tags\";s:30:\"[\"maximal\",\"optimal\",\"simple\"]\";s:17:\"has_page_settings\";b:0;}i:79;a:13:{s:2:\"id\";i:1247;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594192180;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594192180;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:80;a:13:{s:2:\"id\";i:1113;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594120216;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594120216;s:10:\"human_date\";s:12:\"July 7, 2020\";s:4:\"tags\";s:30:\"[\"basic\",\"extreme\",\"standard\"]\";s:17:\"has_page_settings\";b:0;}i:81;a:13:{s:2:\"id\";i:1121;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594120532;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594120532;s:10:\"human_date\";s:12:\"July 7, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:82;a:13:{s:2:\"id\";i:1197;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594178500;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594178500;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:83;a:13:{s:2:\"id\";i:1200;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594178595;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594178595;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:84;a:13:{s:2:\"id\";i:1224;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594190764;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594190764;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:85;a:13:{s:2:\"id\";i:1238;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594192052;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594192052;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:86;a:13:{s:2:\"id\";i:1241;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594192098;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594192098;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:17:\"[\"fitness\",\"gym\"]\";s:17:\"has_page_settings\";b:0;}i:87;a:13:{s:2:\"id\";i:1244;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594192141;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594192141;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:88;a:13:{s:2:\"id\";i:3879;s:5:\"title\";s:11:\"Real Estate\";s:9:\"thumbnail\";s:84:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/real-estate-scaled.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1603789906;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:113:\"https://demo.powerpackelements.com/blocks/real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603789906;s:10:\"human_date\";s:16:\"October 27, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:89;a:13:{s:2:\"id\";i:3262;s:5:\"title\";s:10:\"Restaurant\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/restaurant-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603455979;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603455979;s:10:\"human_date\";s:16:\"October 23, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:90;a:13:{s:2:\"id\";i:1152;s:5:\"title\";s:10:\"Services 1\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594224624;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594224624;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:24:\"[\"design\",\"development\"]\";s:17:\"has_page_settings\";b:0;}i:91;a:13:{s:2:\"id\";i:1500;s:5:\"title\";s:11:\"Services 10\";s:9:\"thumbnail\";s:77:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594264646;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:113:\"https://demo.powerpackelements.com/blocks/services-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594264646;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:92;a:13:{s:2:\"id\";i:1404;s:5:\"title\";s:10:\"Services 2\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594224737;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594224737;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:93;a:13:{s:2:\"id\";i:1421;s:5:\"title\";s:10:\"Services 3\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594225973;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594225973;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:94;a:13:{s:2:\"id\";i:1434;s:5:\"title\";s:10:\"Services 4\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594226407;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594226407;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:24:\"[\"fitness\",\"gym\",\"yoga\"]\";s:17:\"has_page_settings\";b:0;}i:95;a:13:{s:2:\"id\";i:1436;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594226735;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594226735;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:28:\"[\"cafe\",\"food\",\"restaurant\"]\";s:17:\"has_page_settings\";b:0;}i:96;a:13:{s:2:\"id\";i:1452;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594228175;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594228175;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:97;a:13:{s:2:\"id\";i:1491;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594263703;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594263703;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:28:\"[\"construction\",\"gardening\"]\";s:17:\"has_page_settings\";b:0;}i:98;a:13:{s:2:\"id\";i:1494;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594264101;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594264101;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:99;a:13:{s:2:\"id\";i:1497;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594264578;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594264578;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:100;a:13:{s:2:\"id\";i:2542;s:5:\"title\";s:9:\"Ski Board\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/ski-board-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603264950;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/ski-board/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603264950;s:10:\"human_date\";s:16:\"October 21, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:101;a:13:{s:2:\"id\";i:351;s:5:\"title\";s:6:\"Team 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593513600;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593513600;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:102;a:13:{s:2:\"id\";i:2132;s:5:\"title\";s:7:\"Team 10\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/team-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593574846;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/team-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593574846;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:103;a:13:{s:2:\"id\";i:650;s:5:\"title\";s:6:\"Team 2\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-2-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593513713;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593513713;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:8:\"[\"team\"]\";s:17:\"has_page_settings\";b:0;}i:104;a:13:{s:2:\"id\";i:669;s:5:\"title\";s:6:\"Team 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593514965;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593514965;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:8:\"[\"team\"]\";s:17:\"has_page_settings\";b:0;}i:105;a:13:{s:2:\"id\";i:691;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593535377;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593535377;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:106;a:13:{s:2:\"id\";i:693;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593535502;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593535502;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:107;a:13:{s:2:\"id\";i:704;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593536440;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593536440;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:108;a:13:{s:2:\"id\";i:716;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/team-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593572634;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593572634;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:109;a:13:{s:2:\"id\";i:719;s:5:\"title\";s:6:\"Team 8\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/team-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593572685;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593572685;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:110;a:13:{s:2:\"id\";i:733;s:5:\"title\";s:6:\"Team 9\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/team-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593574188;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593574188;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:17:\"[\"gym\",\"trainer\"]\";s:17:\"has_page_settings\";b:0;}i:111;a:13:{s:2:\"id\";i:1584;s:5:\"title\";s:14:\"Testimonials 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594277576;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594277576;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:112;a:13:{s:2:\"id\";i:1591;s:5:\"title\";s:14:\"Testimonials 2\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594278034;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594278034;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:113;a:13:{s:2:\"id\";i:1594;s:5:\"title\";s:14:\"Testimonials 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-3.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594280248;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594280248;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:114;a:13:{s:2:\"id\";i:1607;s:5:\"title\";s:14:\"Testimonials 4\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-4.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594280407;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594280407;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:115;a:13:{s:2:\"id\";i:1610;s:5:\"title\";s:14:\"Testimonials 5\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-5-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594280740;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594280740;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:116;a:13:{s:2:\"id\";i:1612;s:5:\"title\";s:14:\"Testimonials 6\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-6.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594281008;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594281008;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:117;a:13:{s:2:\"id\";i:1615;s:5:\"title\";s:14:\"Testimonials 7\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594281415;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594281415;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:118;a:13:{s:2:\"id\";i:1963;s:5:\"title\";s:14:\"Testimonials 8\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-7-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594281722;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594281722;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:119;a:13:{s:2:\"id\";i:2975;s:5:\"title\";s:6:\"Travel\";s:9:\"thumbnail\";s:88:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/travel-template-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603096139;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603096139;s:10:\"human_date\";s:16:\"October 19, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:120;a:13:{s:2:\"id\";i:4780;s:5:\"title\";s:13:\"Travel Agency\";s:9:\"thumbnail\";s:86:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/travel-agency-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1605080920;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:115:\"https://demo.powerpackelements.com/blocks/travel-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1605080920;s:10:\"human_date\";s:17:\"November 11, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:121;a:13:{s:2:\"id\";i:5286;s:5:\"title\";s:4:\"Yoga\";s:9:\"thumbnail\";s:77:\"https://demo.powerpackelements.com/wp-content/uploads/2021/03/yoga-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1616737750;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:106:\"https://demo.powerpackelements.com/blocks/yoga/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1616737750;s:10:\"human_date\";s:14:\"March 26, 2021\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}}}","no");
INSERT INTO 7ja_options VALUES("22517","elementskit-lite_install_date","2023-02-07 06:42:00","yes");
INSERT INTO 7ja_options VALUES("23729","jetpack_waf_needs_update","1","yes");
INSERT INTO 7ja_options VALUES("26686","pa_review_notice","1","yes");
INSERT INTO 7ja_options VALUES("26712","jetpack_site_icon_url","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/cropped-Untitled-design-1.png","yes");
INSERT INTO 7ja_options VALUES("27502","elementskit-lite__stories_last_check","1713281968","yes");
INSERT INTO 7ja_options VALUES("27503","elementskit-lite__stories_data","O:8:\"stdClass\":10:{s:8:\"10011234\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011234;s:5:\"title\";s:62:\"How to Create Helpful Content that Sustains All Google Updates\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:36:\"https://getgenie.ai/helpful-content/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011233\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011233;s:5:\"title\";s:53:\"What Does AI SEO Mean and How You Should Get Prepared\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:27:\"https://getgenie.ai/ai-seo/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011232\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011232;s:5:\"title\";s:58:\"How to Write AI Prompts to Get Effective Outputs Generated\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:44:\"https://getgenie.ai/how-to-write-ai-prompts/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011231\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011231;s:5:\"title\";s:57:\"Top 8 Cwicly Alternatives — Find the Right Fit for You!\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:38:\"https://wpmet.com/cwicly-alternatives/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011230\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011230;s:5:\"title\";s:61:\"The Future of Gutenberg And Its Role in Redefining WordPress!\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:38:\"https://wpmet.com/future-of-gutenberg/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011229\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011229;s:5:\"title\";s:49:\"How to Add Fancy Mouse Cursor Effect in WordPress\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:50:\"https://wpmet.com/fancy-mouse-cursor-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011218\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011218;s:5:\"title\";s:23:\"Wpmet Ramadan Sale 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1710115200;s:3:\"end\";i:1711929600;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:33:\"https://wpmet.com/ramadan24-story\";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:\"10011214\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011214;s:5:\"title\";s:25:\"GetGenieRamadan Sale 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:1710028800;s:3:\"end\";i:1711929600;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:35:\"https://getgenie.ai/ramadan24-story\";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:\"10011212\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011212;s:5:\"title\";s:50:\"Human First Approach to Ai Content: Best Practices\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:55:\"https://getgenie.ai/human-first-approach-to-ai-content/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011211\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011211;s:5:\"title\";s:62:\"7 Best ChatGPT Alternatives Worth Checking Out (Free and Paid)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:46:\"https://getgenie.ai/best-chatgpt-alternatives/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}","yes");
INSERT INTO 7ja_options VALUES("29014","pa_elements_81a1b11d7","a:0:{}","no");
INSERT INTO 7ja_options VALUES("29015","pa_edit_81a1b11d7","1692650944","no");
INSERT INTO 7ja_options VALUES("29016","pa_elements_c20d53db8","a:0:{}","no");
INSERT INTO 7ja_options VALUES("29017","pa_edit_c20d53db8","1692650944","no");
INSERT INTO 7ja_options VALUES("30193","secret_key","w2>g0b@e:JF2[L_2)(3H(I6#`WeT_,Yq,Ymh^yo|F,.S4/[&S _wDzFq]p~x|TF%","no");
INSERT INTO 7ja_options VALUES("39556","_transient_global_styles_hello-elementor","body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}","no");
INSERT INTO 7ja_options VALUES("43951","pp_do_not_upgrade_to_pro","yes","yes");
INSERT INTO 7ja_options VALUES("47082","nfd_data_module_version","2.4.24","yes");
INSERT INTO 7ja_options VALUES("51133","jp_sync_retry_after_immediate-send","","no");
INSERT INTO 7ja_options VALUES("52160","bluehost_plugin_install_date","1668169241","yes");
INSERT INTO 7ja_options VALUES("56790","category_children","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("57143","pa_elements_8c4c152da","a:0:{}","no");
INSERT INTO 7ja_options VALUES("57144","pa_edit_8c4c152da","1699920545","no");
INSERT INTO 7ja_options VALUES("57627","db_upgraded","1","yes");
INSERT INTO 7ja_options VALUES("57805","nfd_data_token","UfsJ9jWImfCb3uFjyOfPIitVNVhsdS9jYzI5czJHOUw2ZHNNbWYzM0ZheUhHQWVpdmdzQUV2bW15MjRyK1JZK2NXMGtXb1RmTFpqY0lYa1B5NjV3WncrZFZCaVVyZ25ZclVsbDR4dHdEQlhkV2ZXTDk2SGxQaE9DemNHVXExMFpoVi83SmtEUTVqM1g0dFNvMTVmWnNWTTRJeElEa2NoYksyQW5TT2M9","yes");
INSERT INTO 7ja_options VALUES("59743","jetpack_sync_settings_custom_queue_table_enabled","1","yes");
INSERT INTO 7ja_options VALUES("60137","_transient_ekit_lite_slick_to_swiper_migrate","2.9.0","yes");
INSERT INTO 7ja_options VALUES("65819","nfd_module_onboarding_flow","a:16:{s:7:\"version\";s:5:\"1.0.2\";s:8:\"isViewed\";a:0:{}s:10:\"isComplete\";i:0;s:9:\"hasExited\";i:0;s:9:\"isSkipped\";a:0:{}s:11:\"currentStep\";s:26:\"/step/wp-setup/get-started\";s:9:\"createdAt\";i:1697156389;s:9:\"updatedAt\";i:0;s:4:\"data\";a:16:{s:8:\"siteType\";a:3:{s:7:\"referTo\";s:4:\"site\";s:7:\"primary\";a:2:{s:6:\"refers\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:9:\"secondary\";a:2:{s:6:\"refers\";s:0:\"\";s:5:\"value\";s:0:\"\";}}s:14:\"wpComfortLevel\";s:1:\"0\";s:11:\"topPriority\";a:1:{s:9:\"priority1\";s:0:\"\";}s:8:\"blogName\";s:0:\"\";s:15:\"blogDescription\";s:0:\"\";s:8:\"siteLogo\";a:2:{s:2:\"id\";i:0;s:3:\"url\";s:0:\"\";}s:8:\"accounts\";a:0:{}s:5:\"theme\";a:3:{s:8:\"template\";s:0:\"\";s:10:\"stylesheet\";s:0:\"\";s:9:\"variation\";s:0:\"\";}s:12:\"customDesign\";b:0;s:10:\"colorStyle\";s:0:\"\";s:9:\"fontStyle\";s:0:\"\";s:10:\"partHeader\";s:0:\"\";s:9:\"sitePages\";a:2:{s:8:\"homepage\";s:0:\"\";s:5:\"other\";a:0:{}}s:12:\"siteFeatures\";a:0:{}s:8:\"chapters\";a:0:{}s:10:\"comingSoon\";b:0;}s:12:\"currentFlows\";a:0:{}s:20:\"isFirstNFDOnboarding\";b:1;s:8:\"siteType\";s:4:\"blog\";s:9:\"ownerType\";s:8:\"personal\";s:15:\"isEcommercePlan\";b:0;s:12:\"doesCommerce\";b:0;s:12:\"storeDetails\";a:1:{s:11:\"productInfo\";a:2:{s:13:\"product_count\";s:0:\"\";s:13:\"product_types\";a:0:{}}}}","yes");
INSERT INTO 7ja_options VALUES("65820","onboarding_experience_level","0","yes");
INSERT INTO 7ja_options VALUES("66295","jpsq_sync-1697552246.043999-212817-5","a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:48:\"jetpack_sync_settings_custom_queue_table_enabled\";i:1;s:1:\"0\";i:2;i:1;}i:2;i:0;i:3;d:1697552246.0438139;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:1;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:289:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fsettings&_for=jetpack&token=C5%2AP%28WX2H%5EB%25%2ApD%2164L%26k4N4kTkRVGho%3A1%3A0&timestamp=1697552244&nonce=yyqw7QNiAb&body-hash=p03riSqJgAEbjpEe4NzGVpfkolQ%3D&signature=XU2heIcm%2FaHcP1wMwJlAMXLC66k%3D\";}}","no");
INSERT INTO 7ja_options VALUES("68679","bh_cdata_retry_count","7","yes");
INSERT INTO 7ja_options VALUES("68953","wp_attachment_pages_enabled","1","yes");
INSERT INTO 7ja_options VALUES("70198","pa_elements_","a:0:{}","no");
INSERT INTO 7ja_options VALUES("70199","pa_edit_","1713282991","no");
INSERT INTO 7ja_options VALUES("77433","endurance_cloudflare_enabled","basic","yes");
INSERT INTO 7ja_options VALUES("77659","elementor_pro_install_history","a:6:{s:6:\"3.11.0\";i:1703969077;s:6:\"3.18.2\";i:1705581684;s:6:\"3.18.3\";i:1705581685;s:6:\"3.19.0\";i:1706617308;s:6:\"3.19.1\";i:1707224891;s:6:\"3.19.2\";i:1707398134;}","yes");
INSERT INTO 7ja_options VALUES("77695","elementskit-lite_never_show","yes","yes");
INSERT INTO 7ja_options VALUES("77828","WPLANG","","yes");
INSERT INTO 7ja_options VALUES("77829","new_admin_email","latitude39creative@gmail.com","yes");
INSERT INTO 7ja_options VALUES("77830","adminhash","a:2:{s:4:\"hash\";s:32:\"cf5be960e35dd670519f7b9f09b6fa19\";s:8:\"newemail\";s:31:\"helloben@latitude39creative.com\";}","yes");
INSERT INTO 7ja_options VALUES("77833","newfold_cache_level","2","yes");
INSERT INTO 7ja_options VALUES("77834","mm_cache_settings","a:2:{s:4:\"page\";s:8:\"disabled\";s:7:\"browser\";s:8:\"disabled\";}","yes");
INSERT INTO 7ja_options VALUES("77835","newfold_skip_404_handling","1","yes");
INSERT INTO 7ja_options VALUES("80263","nfd_coming_soon_module_version","1.2.3","yes");
INSERT INTO 7ja_options VALUES("83063","elementor_1_elementor_pro_updater_batch_bcfb805e03f955a568a3b66a","a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}","no");
INSERT INTO 7ja_options VALUES("85770","jetpack_sync_full_status","a:4:{s:7:\"started\";i:1708380656;s:8:\"finished\";i:1708380659;s:8:\"progress\";a:1:{s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}}s:6:\"config\";a:1:{s:9:\"functions\";b:1;}}","no");
INSERT INTO 7ja_options VALUES("87872","jetpack_affiliate_code","86241","yes");
INSERT INTO 7ja_options VALUES("88117","jetpack_sync_settings_wpcom_rest_api_enabled","0","yes");
INSERT INTO 7ja_options VALUES("88302","elementor_pro_remote_info_api_data_3.19.2","a:2:{s:7:\"timeout\";i:1709943886;s:5:\"value\";s:212519:\"{\"stable_version\":\"3.19.3\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:198188:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.19.3\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzA5OTAwNjg2LCJleHAiOjE3MDk5ODcwODZ9.iuN-4UKgyJzKrby1Zse4QOejPfCQsYttrQJvnbYV0YE\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzA5OTAwNjg2LCJleHAiOjE3MDk5ODcwODZ9.iuN-4UKgyJzKrby1Zse4QOejPfCQsYttrQJvnbYV0YE\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MDk5MDA2ODYsImV4cCI6MTcwOTk4NzA4Nn0.bg5zl4AkEOBjHDkZLgxLpG2sJLrWxP57eKMPd5LjwuU\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MDk5MDA2ODYsImV4cCI6MTcwOTk4NzA4Nn0.bg5zl4AkEOBjHDkZLgxLpG2sJLrWxP57eKMPd5LjwuU\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}","no");
INSERT INTO 7ja_options VALUES("89454","elementor_pro_remote_info_api_data_3.19.3","a:2:{s:7:\"timeout\";i:1710245968;s:5:\"value\";s:215748:\"{\"stable_version\":\"3.20.0\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:201289:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.20.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzEwMjAyNzY4LCJleHAiOjE3MTAyODkxNjh9.LLVaIiVvzdqX8BbfVyH_KlzPI7A1qydrRZQJIcWZpbA\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzEwMjAyNzY4LCJleHAiOjE3MTAyODkxNjh9.LLVaIiVvzdqX8BbfVyH_KlzPI7A1qydrRZQJIcWZpbA\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTAyMDI3NjgsImV4cCI6MTcxMDI4OTE2OH0.2sstHvKiyXW78eLfvTHqGGk8bh3_y7jIt0StzpsBH10\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTAyMDI3NjgsImV4cCI6MTcxMDI4OTE2OH0.2sstHvKiyXW78eLfvTHqGGk8bh3_y7jIt0StzpsBH10\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}","no");
INSERT INTO 7ja_options VALUES("91680","ce4wp_hide_banner:get_started","1","yes");
INSERT INTO 7ja_options VALUES("91792","elementor_pro_remote_info_api_data_3.20.0","a:2:{s:7:\"timeout\";i:1711066730;s:5:\"value\";s:215972:\"{\"stable_version\":\"3.20.1\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:201504:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.20.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzExMDIzNTI5LCJleHAiOjE3MTExMDk5Mjl9.Fe1twh51MOc9m9dL2TOT2bdSXpAMK4DBZkadUovQ0wQ\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzExMDIzNTI5LCJleHAiOjE3MTExMDk5Mjl9.Fe1twh51MOc9m9dL2TOT2bdSXpAMK4DBZkadUovQ0wQ\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTEwMjM1MjksImV4cCI6MTcxMTEwOTkyOX0.EaNlwsuJSGbz3sBnhUn-ryQt_6cWiNjVfDje5CF9wfU\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTEwMjM1MjksImV4cCI6MTcxMTEwOTkyOX0.EaNlwsuJSGbz3sBnhUn-ryQt_6cWiNjVfDje5CF9wfU\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}","no");
INSERT INTO 7ja_options VALUES("93203","elementor_pro_remote_info_api_data_3.20.1","a:2:{s:7:\"timeout\";i:1711542684;s:5:\"value\";s:216426:\"{\"stable_version\":\"3.20.2\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:201943:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.20.2\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzExNDk5NDgzLCJleHAiOjE3MTE1ODU4ODN9.7RDAAeBjqALcGR82LWXORdkdhcLiXEBGKR95pSlFLWg\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzExNDk5NDgzLCJleHAiOjE3MTE1ODU4ODN9.7RDAAeBjqALcGR82LWXORdkdhcLiXEBGKR95pSlFLWg\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTE0OTk0ODMsImV4cCI6MTcxMTU4NTg4M30.byAVQQf1rCf8rdNUedXGzafruE3ukvKg5NOP6t54wPE\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTE0OTk0ODMsImV4cCI6MTcxMTU4NTg4M30.byAVQQf1rCf8rdNUedXGzafruE3ukvKg5NOP6t54wPE\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}","no");
INSERT INTO 7ja_options VALUES("95147","_transient_timeout_jetpack_file_data_13.3","1714695744","no");
INSERT INTO 7ja_options VALUES("95148","_transient_jetpack_file_data_13.3","a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}","no");
INSERT INTO 7ja_options VALUES("97032","_transient_timeout_jetpack_file_data_13.3.1","1715301890","no");
INSERT INTO 7ja_options VALUES("97033","_transient_jetpack_file_data_13.3.1","a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}","no");
INSERT INTO 7ja_options VALUES("97149","elementor_pro_remote_info_api_data_3.20.2","a:2:{s:7:\"timeout\";i:1712884765;s:5:\"value\";s:216651:\"{\"stable_version\":\"3.20.3\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:202152:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.20.3\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzEyODQxNTY1LCJleHAiOjE3MTI5Mjc5NjV9.chki7kw-veXZkhFWRXsbUv9u7tLq7X-4rhZtZJzCFKc\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzEyODQxNTY1LCJleHAiOjE3MTI5Mjc5NjV9.chki7kw-veXZkhFWRXsbUv9u7tLq7X-4rhZtZJzCFKc\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTI4NDE1NjUsImV4cCI6MTcxMjkyNzk2NX0.yUXx5NqK2Y9hnvarRQYjVMcMmy8dem-ZW4k7aPe0uLs\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTI4NDE1NjUsImV4cCI6MTcxMjkyNzk2NX0.yUXx5NqK2Y9hnvarRQYjVMcMmy8dem-ZW4k7aPe0uLs\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}","no");
INSERT INTO 7ja_options VALUES("97457","nfd_ecommerce_module_version","1.3.27","yes");
INSERT INTO 7ja_options VALUES("98379","elementor_pro_remote_info_api_data_3.20.3","a:2:{s:7:\"timeout\";i:1713269917;s:5:\"value\";s:217902:\"{\"stable_version\":\"3.21.0\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:203358:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.21.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzEzMjI2NzE3LCJleHAiOjE3MTMzMTMxMTd9.utX9AQnGCN98H16Y_zhSZaLG4TQ-Ymb8M5Het57xymc\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzEzMjI2NzE3LCJleHAiOjE3MTMzMTMxMTd9.utX9AQnGCN98H16Y_zhSZaLG4TQ-Ymb8M5Het57xymc\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTMyMjY3MTcsImV4cCI6MTcxMzMxMzExN30.lLuV_JTMsL489YuazbhGyKHe0nirNHLwUoFrn8PZ4X8\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTMyMjY3MTcsImV4cCI6MTcxMzMxMzExN30.lLuV_JTMsL489YuazbhGyKHe0nirNHLwUoFrn8PZ4X8\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}","no");
INSERT INTO 7ja_options VALUES("98590","ce4wp_ignore_review_notice","1","yes");
INSERT INTO 7ja_options VALUES("98617","_elementor_notifications_data","a:2:{s:7:\"timeout\";i:1713283553;s:5:\"value\";s:8282:\"[{\"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\":\"New in Elementor Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/dynamic-content-pro-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-320-display-conditions-enhacments-peformance-improvements\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"display-conditions-or-logic-3.20\",\"title\":\"Connect Display Conditions - OR Logic\",\"description\":\"Create condition groups of one or more conditions and connect them with the OR logic to display an element when either groups conditions are met.\",\"topic\":\"New in Elementor Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/display-conditions-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-320-display-conditions-enhacments-peformance-improvements\\/\",\"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\":\"New in Elementor Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/display-conditions-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-320-display-conditions-enhacments-peformance-improvements\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-dispaly-conditions\\/\"},{\"id\":\"display-conditions-or-logic-3.20\",\"title\":\"Discover the Professional Way to Create Dynamic Content Websites\",\"description\":\"All the tools you need to turn the content you store on WordPress into pixel perfect websites that maintain a consistent, professional design.\",\"topic\":\"Dynamic Content\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/dynamic-content-3.20.gif\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/youtu.be\\/QSpCwj5dl5g?si=OpSNnnIyqCSOPzTF\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-dynamic-content\\/\"},{\"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\":\"element-manager-permissions-3.19\",\"title\":\"Streamline Collaboration by Setting Permissions to Widgets in the Element Manager\",\"description\":\"Customize the widgets displayed in the Widget Panel for each user based on their assigned roles.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/element-manager-role-permissions-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"element-manager-permissions-3.19\",\"title\":\"Streamline Collaboration by Setting Permissions to Widgets in the Element Manager\",\"description\":\"Customize the widgets displayed in the Widget Panel for each user based on their assigned roles.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/element-manager-role-permissions-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-element-manager-permission\\/\"},{\"id\":\"akismet-3.19\",\"title\":\"Protect Forms From Spam by Seamlessly Integrating Akismet Spam Filter\",\"description\":\"Akismet works in the background, using AI technology to detect spam with 99.9 percent accuracy without any additional interactions required by your visitors.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/akismet-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"akismet-3.19\",\"title\":\"Protect Forms From Spam by Seamlessly Integrating Akismet Spam Filter\",\"description\":\"Akismet works in the background, using AI technology to detect spam with 99.9 percent accuracy without any additional interactions required by your visitors.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/akismet-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-akismet\\/\"},{\"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\":\"ai-variations-in-template-library-3.19\",\"title\":\"Inspire Your Creation with Web-Based Container Generation\",\"description\":\"Use a URL address to generate containers based on a reference from the open web.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ai-variations-in-template-library-3.19.png\",\"chipPlan\":\"Elementor AI\",\"chipTags\":[\"New Feature\"],\"conditions\":[[{\"type\":\"introduction_meta\",\"meta\":\"ai_get_started\"}]],\"cta\":\"Get Elementor AI\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-web-based-container\\/\"},{\"id\":\"ai-variations-in-template-library-3.19\",\"title\":\"Inspire Your Creation with Web-Based Container Generation\",\"description\":\"Use a URL address to generate containers based on a reference from the open web.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ai-variations-in-template-library-3.19.png\",\"chipPlan\":\"Elementor AI\",\"chipTags\":[\"New Feature\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-web-based-container\\/\"},{\"id\":\"taxonomy-filter-multi-select-3.18\",\"title\":\"Enhance the Visitor Experience of Listings with Taxonomy Filter Multi-Select Capabilities\",\"description\":\"Help visitors find the products and posts they\'re looking for by filter listings based on multiple categories or tags from the same taxonomy filter.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/taxonomy-filter-multi-select-3.18.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-318-element-manager-multi-selection-taxonomy-filter\\/#:~:text=%5BPro%5D%20Enhanced%20Taxonomy%20Filter%20with%20Multi%2DSelection\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"taxonomy-filter-multi-select-3.18\",\"title\":\"Enhance the Visitor Experience of Listings with Taxonomy Filter Multi-Select Capabilities\",\"description\":\"Help visitors find the products and posts they\'re looking for by filter listings based on multiple categories or tags from the same taxonomy filter.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/taxonomy-filter-multi-select-3.18.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-318-element-manager-multi-selection-taxonomy-filter\\/#:~:text=%5BPro%5D%20Enhanced%20Taxonomy%20Filter%20with%20Multi%2DSelection\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-taxonomy-filter\\/\"}]\";}","no");
INSERT INTO 7ja_options VALUES("101766","jetpack_connection_xmlrpc_errors","a:1:{s:19:\"no_valid_blog_token\";a:1:{i:0;a:7:{s:10:\"error_code\";s:19:\"no_valid_blog_token\";s:7:\"user_id\";s:1:\"0\";s:13:\"error_message\";s:18:\"Invalid blog token\";s:10:\"error_data\";a:7:{s:5:\"token\";s:36:\"U2hs9#R$hcyyln^(XRARQW!d^SWSfpjb:1:0\";s:9:\"timestamp\";s:10:\"1714034607\";s:5:\"nonce\";s:10:\"j7dZqmoUH9\";s:9:\"body_hash\";s:28:\"pdst++8gjpsEsdzTGdS19+YN3g4=\";s:6:\"method\";s:4:\"POST\";s:3:\"url\";s:243:\"loghomemaintenanceandsupplyco.com/xmlrpc.php?for=jetpack&token=U2hs9%23R%24hcyyln%5E%28XRARQW%21d%5ESWSfpjb%3A1%3A0&timestamp=1714034607&nonce=j7dZqmoUH9&body-hash=pdst%2B%2B8gjpsEsdzTGdS19%2BYN3g4%3D&signature=XqoZBrQ1pZylxWcnNN%2F6w4qSPx8%3D\";s:9:\"signature\";s:28:\"XqoZBrQ1pZylxWcnNN/6w4qSPx8=\";}s:9:\"timestamp\";i:1714034608;s:5:\"nonce\";s:10:\"UrpheP1Ke4\";s:10:\"error_type\";s:6:\"xmlrpc\";}}}","yes");
INSERT INTO 7ja_options VALUES("103661","elementor_pro_remote_info_api_data_3.21.0","a:2:{s:7:\"timeout\";i:1714177458;s:5:\"value\";s:218078:\"{\"stable_version\":\"3.21.1\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:203527:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.21.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzE0MTM0MjU3LCJleHAiOjE3MTQyMjA2NTd9.YlFbBtivwucVqV6KitmTWaghRCfkEAzHYd_ZIatPXdg\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzE0MTM0MjU3LCJleHAiOjE3MTQyMjA2NTd9.YlFbBtivwucVqV6KitmTWaghRCfkEAzHYd_ZIatPXdg\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTQxMzQyNTcsImV4cCI6MTcxNDIyMDY1N30.Ro_b1Zbes7DpeaXAPCZnmyDrGFw8qwop2N_NTOwke3Q\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTQxMzQyNTcsImV4cCI6MTcxNDIyMDY1N30.Ro_b1Zbes7DpeaXAPCZnmyDrGFw8qwop2N_NTOwke3Q\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}","no");
INSERT INTO 7ja_options VALUES("103833","_site_transient_timeout_php_check_d876ede602bb9ac9456a7d884ebdc1f3","1714782686","no");
INSERT INTO 7ja_options VALUES("103834","_site_transient_php_check_d876ede602bb9ac9456a7d884ebdc1f3","a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}","no");
INSERT INTO 7ja_options VALUES("104573","_transient_timeout_jetpack_https_test_message","1714523840","no");
INSERT INTO 7ja_options VALUES("104574","_transient_jetpack_https_test_message","","no");
INSERT INTO 7ja_options VALUES("104801","_transient_timeout_elementor_rollback_versions_3.21.3","1715012342","no");
INSERT INTO 7ja_options VALUES("104802","_transient_elementor_rollback_versions_3.21.3","a:30:{i:0;s:6:\"3.21.2\";i:1;s:6:\"3.21.1\";i:2;s:6:\"3.21.0\";i:3;s:6:\"3.20.4\";i:4;s:6:\"3.20.3\";i:5;s:6:\"3.20.2\";i:6;s:6:\"3.20.1\";i:7;s:6:\"3.20.0\";i:8;s:6:\"3.19.4\";i:9;s:6:\"3.19.3\";i:10;s:6:\"3.19.2\";i:11;s:6:\"3.19.1\";i:12;s:6:\"3.19.0\";i:13;s:6:\"3.18.3\";i:14;s:6:\"3.18.2\";i:15;s:6:\"3.18.1\";i:16;s:6:\"3.18.0\";i:17;s:6:\"3.17.3\";i:18;s:6:\"3.17.2\";i:19;s:6:\"3.17.1\";i:20;s:6:\"3.17.0\";i:21;s:6:\"3.16.6\";i:22;s:6:\"3.16.5\";i:23;s:6:\"3.16.4\";i:24;s:6:\"3.16.3\";i:25;s:6:\"3.16.2\";i:26;s:6:\"3.16.1\";i:27;s:6:\"3.16.0\";i:28;s:6:\"3.15.3\";i:29;s:6:\"3.15.2\";}","no");
INSERT INTO 7ja_options VALUES("105015","_transient_timeout_jetpack_https_test","1714523840","no");
INSERT INTO 7ja_options VALUES("105016","_transient_jetpack_https_test","1","no");
INSERT INTO 7ja_options VALUES("105028","jetpack_site_products","a:0:{}","yes");
INSERT INTO 7ja_options VALUES("105071","jetpack_sync_dedicated_spawn_lock","1714495590.8004","no");
INSERT INTO 7ja_options VALUES("105078","wpseo-cleanup-current-task","clean_selected_empty_usermeta","yes");
INSERT INTO 7ja_options VALUES("105093","elementor_controls_usage","a:10:{s:7:\"wp-post\";a:3:{s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:2;s:22:\"background_hover_image\";i:2;s:31:\"background_hover_video_fallback\";i:2;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:2;s:30:\"background_overlay_hover_image\";i:2;s:39:\"background_overlay_hover_video_fallback\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:2;s:22:\"background_hover_image\";i:2;s:31:\"background_hover_video_fallback\";i:2;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:2;s:30:\"background_overlay_hover_image\";i:2;s:39:\"background_overlay_hover_video_fallback\";i:2;}}}}}s:4:\"page\";a:18:{s:19:\"elementskit-heading\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:7:\"content\";a:5:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:12;s:22:\"ekit_heading_title_tag\";i:10;s:17:\"show_title_border\";i:5;s:16:\"title_float_left\";i:5;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:12;s:22:\"ekit_heading_sub_title\";i:12;s:31:\"ekit_heading_sub_title_position\";i:12;s:26:\"ekit_heading_sub_title_tag\";i:12;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:12;s:24:\"ekit_heading_extra_title\";i:12;s:16:\"desciption_width\";i:12;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:12;s:27:\"ekit_heading_show_seperator\";i:5;s:28:\"ekit_heading_seperator_image\";i:12;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:7;s:17:\"pa_badge_bg_image\";i:7;s:26:\"pa_badge_bg_video_fallback\";i:7;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:8:{s:24:\"ekit_heading_title_color\";i:12;s:40:\"ekit_heading_title_typography_typography\";i:3;s:41:\"ekit_heading_title_typography_font_family\";i:3;s:39:\"ekit_heading_title_typography_font_size\";i:3;s:41:\"ekit_heading_title_typography_font_weight\";i:3;s:41:\"ekit_heading_title_typography_line_height\";i:3;s:29:\"title_left_border_color_image\";i:7;s:38:\"title_left_border_color_video_fallback\";i:7;}s:40:\"ekit_heading_section_focused_title_style\";a:9:{s:32:\"ekit_heading_focused_title_color\";i:12;s:49:\"ekit_heading_focused_title_typography_font_family\";i:5;s:47:\"ekit_heading_focused_title_typography_font_size\";i:5;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:5;s:49:\"ekit_heading_focused_title_typography_line_height\";i:5;s:45:\"ekit_heading_focused_title_secondary_bg_image\";i:7;s:54:\"ekit_heading_focused_title_secondary_bg_video_fallback\";i:7;s:37:\"ekit_heading_title_secondary_bg_image\";i:7;s:46:\"ekit_heading_title_secondary_bg_video_fallback\";i:7;}s:36:\"ekit_heading_section_sub_title_style\";a:13:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:12;s:28:\"ekit_heading_sub_title_color\";i:9;s:44:\"ekit_heading_sub_title_typography_typography\";i:2;s:45:\"ekit_heading_sub_title_typography_font_family\";i:2;s:43:\"ekit_heading_sub_title_typography_font_size\";i:2;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:2;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:2;s:41:\"ekit_heading_sub_title_secondary_bg_image\";i:7;s:50:\"ekit_heading_sub_title_secondary_bg_video_fallback\";i:7;s:46:\"ekit_heading_sub_title_border_color_left_image\";i:7;s:55:\"ekit_heading_sub_title_border_color_left_video_fallback\";i:7;s:47:\"ekit_heading_sub_title_border_color_right_image\";i:7;s:56:\"ekit_heading_sub_title_border_color_right_video_fallback\";i:7;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:12;s:28:\"ekit_heading_seperator_color\";i:12;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:9;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:12;s:18:\"animation_duration\";i:12;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:7;s:23:\"pa_cursor_bgColor_image\";i:7;s:32:\"pa_cursor_bgColor_video_fallback\";i:7;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:7;s:26:\"_background_video_fallback\";i:7;s:23:\"_background_hover_image\";i:7;s:32:\"_background_hover_video_fallback\";i:7;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:7;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:25;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:25;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:11;s:17:\"pa_badge_bg_image\";i:11;s:26:\"pa_badge_bg_video_fallback\";i:11;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:17;s:22:\"typography_font_family\";i:21;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:21;s:22:\"typography_line_height\";i:17;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:16;s:18:\"animation_duration\";i:17;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:12;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:11;s:23:\"pa_cursor_bgColor_image\";i:11;s:32:\"pa_cursor_bgColor_video_fallback\";i:11;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:11;s:26:\"_background_video_fallback\";i:11;s:23:\"_background_hover_image\";i:11;s:32:\"_background_hover_video_fallback\";i:11;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:11;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:59;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:59;s:21:\"space_between_widgets\";i:21;s:16:\"content_position\";i:23;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:39;s:17:\"pa_badge_bg_image\";i:39;s:26:\"pa_badge_bg_video_fallback\";i:39;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:38;s:6:\"margin\";i:15;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:39;s:23:\"pa_cursor_bgColor_image\";i:39;s:32:\"pa_cursor_bgColor_video_fallback\";i:39;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:18:\"animation_duration\";i:8;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:14:{s:21:\"background_background\";i:10;s:27:\"background_hover_background\";i:6;s:27:\"background_hover_transition\";i:6;s:29:\"background_hover_color_b_stop\";i:6;s:30:\"background_hover_gradient_type\";i:6;s:34:\"background_hover_gradient_position\";i:6;s:16:\"background_image\";i:39;s:25:\"background_video_fallback\";i:39;s:22:\"background_hover_image\";i:39;s:31:\"background_hover_video_fallback\";i:39;s:19:\"background_position\";i:4;s:15:\"background_size\";i:4;s:23:\"background_color_b_stop\";i:4;s:24:\"background_gradient_type\";i:4;}s:14:\"section_border\";a:1:{s:12:\"border_width\";i:6;}s:26:\"section_background_overlay\";a:16:{s:24:\"background_overlay_image\";i:39;s:33:\"background_overlay_video_fallback\";i:39;s:30:\"background_overlay_hover_image\";i:39;s:39:\"background_overlay_hover_video_fallback\";i:39;s:29:\"background_overlay_background\";i:4;s:27:\"background_overlay_position\";i:4;s:23:\"background_overlay_size\";i:4;s:26:\"background_overlay_opacity\";i:4;s:22:\"css_filters_brightness\";i:4;s:20:\"css_filters_saturate\";i:4;s:35:\"background_overlay_hover_background\";i:4;s:33:\"background_overlay_hover_position\";i:4;s:29:\"background_overlay_hover_size\";i:4;s:32:\"background_overlay_hover_opacity\";i:4;s:28:\"css_filters_hover_brightness\";i:4;s:35:\"background_overlay_hover_transition\";i:4;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:31;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:18;s:16:\"background_image\";i:22;s:19:\"background_position\";i:11;s:15:\"background_size\";i:11;s:25:\"background_video_fallback\";i:19;s:22:\"background_hover_image\";i:19;s:31:\"background_hover_video_fallback\";i:19;s:21:\"background_attachment\";i:5;}s:26:\"section_background_overlay\";a:9:{s:29:\"background_overlay_background\";i:10;s:24:\"background_overlay_image\";i:19;s:33:\"background_overlay_video_fallback\";i:19;s:30:\"background_overlay_hover_image\";i:19;s:39:\"background_overlay_hover_video_fallback\";i:19;s:26:\"background_overlay_opacity\";i:3;s:31:\"background_overlay_color_b_stop\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:17;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:18:\"animation_duration\";i:3;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:19;s:23:\"pa_cursor_bgColor_image\";i:19;s:32:\"pa_cursor_bgColor_video_fallback\";i:19;}}s:6:\"layout\";a:3:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:20;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:2;s:3:\"gap\";i:4;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:19;s:17:\"pa_badge_bg_image\";i:19;s:26:\"pa_badge_bg_video_fallback\";i:19;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:21;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_image\";a:1:{s:5:\"image\";i:21;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:14;s:17:\"pa_badge_bg_image\";i:14;s:26:\"pa_badge_bg_video_fallback\";i:14;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:7:{s:5:\"width\";i:9;s:22:\"css_filters_css_filter\";i:10;s:22:\"css_filters_brightness\";i:5;s:20:\"css_filters_saturate\";i:9;s:28:\"css_filters_hover_css_filter\";i:9;s:27:\"background_hover_transition\";i:9;s:28:\"css_filters_hover_brightness\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:5;s:8:\"_padding\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:14;s:23:\"pa_cursor_bgColor_image\";i:14;s:32:\"pa_cursor_bgColor_video_fallback\";i:14;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:14;s:26:\"_background_video_fallback\";i:14;s:23:\"_background_hover_image\";i:14;s:32:\"_background_hover_video_fallback\";i:14;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:14;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:26;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_title\";a:2:{s:5:\"title\";i:26;s:11:\"header_size\";i:26;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:8;s:17:\"pa_badge_bg_image\";i:8;s:26:\"pa_badge_bg_video_fallback\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:22:\"typography_font_family\";i:14;s:20:\"typography_font_size\";i:10;s:22:\"typography_font_weight\";i:14;s:11:\"title_color\";i:4;s:22:\"typography_line_height\";i:8;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:8;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:8;s:23:\"pa_cursor_bgColor_image\";i:8;s:32:\"pa_cursor_bgColor_video_fallback\";i:8;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:8;s:26:\"_background_video_fallback\";i:8;s:23:\"_background_hover_image\";i:8;s:32:\"_background_hover_video_fallback\";i:8;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:8;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:6;s:9:\"icon_list\";i:7;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:7;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:4:{s:9:\"icon_size\";i:7;s:10:\"icon_color\";i:6;s:16:\"icon_color_hover\";i:6;s:11:\"text_indent\";i:1;}s:18:\"section_text_style\";a:2:{s:10:\"text_color\";i:6;s:16:\"text_color_hover\";i:6;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:9;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:8;s:17:\"pa_badge_bg_image\";i:8;s:26:\"pa_badge_bg_video_fallback\";i:8;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:8;s:23:\"pa_cursor_bgColor_image\";i:8;s:32:\"pa_cursor_bgColor_video_fallback\";i:8;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:8;s:26:\"_background_video_fallback\";i:8;s:23:\"_background_hover_image\";i:8;s:32:\"_background_hover_video_fallback\";i:8;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:8;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:6;s:5:\"align\";i:6;s:12:\"align_mobile\";i:6;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:4;s:17:\"pa_badge_bg_image\";i:4;s:26:\"pa_badge_bg_video_fallback\";i:4;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:4:{s:10:\"icon_color\";i:6;s:18:\"icon_primary_color\";i:6;s:20:\"icon_secondary_color\";i:6;s:9:\"icon_size\";i:6;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:6;s:15:\"hover_animation\";i:6;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:6;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:4;s:23:\"pa_cursor_bgColor_image\";i:4;s:32:\"pa_cursor_bgColor_video_fallback\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:15:\"arrows_position\";i:1;s:9:\"dots_size\";i:1;}s:19:\"section_style_image\";a:2:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"elementskit-testimonial\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:41:\"ekit_testimonial_layout_section_tab_style\";a:1:{s:22:\"ekit_testimonial_style\";i:2;}s:34:\"ekit_testimonial_section_tab_style\";a:2:{s:30:\"ekit_testimonial_rating_enable\";i:2;s:21:\"ekit_testimonial_data\";i:2;}s:32:\"ekit_testimonial_layout_settings\";a:1:{s:28:\"ekit_testimonial_slidetoshow\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:5:\"style\";a:7:{s:31:\"ekit_testimonial_section_layout\";a:10:{s:30:\"ekit_testimonial_layout_margin\";i:2;s:31:\"ekit_testimonial_layout_padding\";i:2;s:45:\"ekit_testimonial_layout_background_background\";i:2;s:40:\"ekit_testimonial_layout_background_color\";i:2;s:40:\"ekit_testimonial_layout_background_image\";i:2;s:49:\"ekit_testimonial_layout_background_video_fallback\";i:2;s:47:\"ekit_testimonial_layout_active_background_image\";i:2;s:56:\"ekit_testimonial_layout_active_background_video_fallback\";i:2;s:47:\"ekit_testimonial_active_layout_background_image\";i:2;s:56:\"ekit_testimonial_active_layout_background_video_fallback\";i:2;}s:37:\"ekit_testimonial_section_wraper_style\";a:2:{s:52:\"ekit_testimonial_section_wraper_horizontal_alignment\";i:2;s:39:\"ekit_testimonial_section_wraper_padding\";i:2;}s:36:\"ekit_testimonial_content_description\";a:7:{s:34:\"ekit_testimonial_description_color\";i:2;s:41:\"ekit_testimonial_description_active_color\";i:2;s:50:\"ekit_testimonial_description_typography_typography\";i:2;s:51:\"ekit_testimonial_description_typography_font_family\";i:2;s:51:\"ekit_testimonial_description_typography_font_weight\";i:2;s:51:\"ekit_testimonial_description_typography_line_height\";i:2;s:35:\"ekit_testimonial_description_margin\";i:2;}s:41:\"ekit_testimonial_section_wathermark_style\";a:10:{s:41:\"ekit_testimonial_section_wathermark_color\";i:2;s:48:\"ekit_testimonial_section_wathermark_icon_padding\";i:2;s:63:\"ekit_testimonial_section_wathermark_icon_badge_background_image\";i:2;s:72:\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\";i:2;s:69:\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\";i:2;s:78:\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\";i:2;s:70:\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\";i:2;s:79:\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\";i:2;s:58:\"ekit_testimonial_section_wathermark_badge_background_image\";i:2;s:67:\"ekit_testimonial_section_wathermark_badge_background_video_fallback\";i:2;}s:39:\"ekit_testimonial_client_content_section\";a:3:{s:34:\"ekit_testimonial_client_image_size\";i:2;s:46:\"ekit_testimonial_client_image_background_image\";i:2;s:55:\"ekit_testimonial_client_image_background_video_fallback\";i:2;}s:31:\"ekit_testimonial_client_dot_tab\";a:4:{s:44:\"ekit_testimonial_client_dot_background_image\";i:2;s:53:\"ekit_testimonial_client_dot_background_video_fallback\";i:2;s:51:\"ekit_testimonial_client_dot_active_background_image\";i:2;s:60:\"ekit_testimonial_client_dot_active_background_video_fallback\";i:2;}s:30:\"ekit_testimonial_nav_style_tab\";a:4:{s:44:\"ekit_testimonial_nav_background_normal_image\";i:2;s:53:\"ekit_testimonial_nav_background_normal_video_fallback\";i:2;s:43:\"ekit_testimonial_nav_background_hover_image\";i:2;s:52:\"ekit_testimonial_nav_background_hover_video_fallback\";i:2;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:10:\"title_size\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:2:{s:8:\"position\";i:2;s:18:\"title_bottom_space\";i:2;}s:19:\"section_style_image\";a:1:{s:10:\"image_size\";i:2;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:28:\"title_typography_line_height\";i:2;s:34:\"description_typography_font_family\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_button\";a:4:{s:4:\"text\";i:1;s:10:\"icon_align\";i:1;s:11:\"icon_indent\";i:1;s:4:\"size\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:25:\"background_gradient_angle\";i:1;s:15:\"hover_animation\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:12:\"align_mobile\";i:1;s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:20:\"elementskit-icon-box\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"ekit_icon_box\";a:4:{s:32:\"ekit_icon_box_enable_header_icon\";i:4;s:24:\"ekit_icon_box_title_text\";i:4;s:30:\"ekit_icon_box_description_text\";i:4;s:26:\"ekit_icon_box_header_image\";i:4;}s:30:\"ekit_icon_box_section_settings\";a:1:{s:24:\"ekit_icon_box_title_size\";i:4;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:4;s:17:\"pa_badge_bg_image\";i:4;s:26:\"pa_badge_bg_video_fallback\";i:4;}}s:5:\"style\";a:6:{s:38:\"ekit_icon_box_section_background_style\";a:14:{s:41:\"ekit_icon_box_infobox_bg_group_background\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_color\";i:4;s:40:\"ekit_icon_box_iocnbox_border_group_width\";i:4;s:36:\"ekit_icon_box_infobox_border_radious\";i:4;s:47:\"ekit_icon_box_infobox_bg_hover_group_background\";i:4;s:42:\"ekit_icon_box_infobox_bg_hover_group_color\";i:2;s:44:\"ekit_icon_box_infobox_bg_hover_group_color_b\";i:4;s:38:\"ekit_icon_box_info_box_hover_animation\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_image\";i:4;s:32:\"ekit_icon_box_infobox_bg_padding\";i:4;s:45:\"ekit_icon_box_infobox_bg_group_video_fallback\";i:4;s:42:\"ekit_icon_box_infobox_bg_hover_group_image\";i:4;s:51:\"ekit_icon_box_infobox_bg_hover_group_video_fallback\";i:4;s:38:\"ekit_icon_box_infobox_bg_group_color_b\";i:2;}s:31:\"ekit_icon_section_style_content\";a:13:{s:27:\"ekit_icon_description_color\";i:4;s:33:\"ekit_icon_description_color_hover\";i:4;s:49:\"ekit_icon_description_typography_group_typography\";i:3;s:50:\"ekit_icon_description_typography_group_font_family\";i:3;s:50:\"ekit_icon_description_typography_group_font_weight\";i:3;s:50:\"ekit_icon_description_typography_group_line_height\";i:3;s:21:\"ekit_icon_title_color\";i:3;s:27:\"ekit_icon_title_color_hover\";i:3;s:43:\"ekit_icon_title_typography_group_typography\";i:2;s:44:\"ekit_icon_title_typography_group_font_family\";i:2;s:42:\"ekit_icon_title_typography_group_font_size\";i:2;s:44:\"ekit_icon_title_typography_group_font_weight\";i:2;s:44:\"ekit_icon_title_typography_group_line_height\";i:2;}s:32:\"ekit_icon_box_section_style_icon\";a:3:{s:32:\"ekit_icon_box_icon_primary_color\";i:4;s:25:\"ekit_icon_box_icon_height\";i:4;s:24:\"ekit_icon_box_icon_width\";i:4;}s:27:\"ekit_icon_box_section_style\";a:4:{s:40:\"ekit_icon_box_btn_background_group_image\";i:4;s:49:\"ekit_icon_box_btn_background_group_video_fallback\";i:4;s:46:\"ekit_icon_box_btn_background_hover_group_image\";i:4;s:55:\"ekit_icon_box_btn_background_hover_group_video_fallback\";i:4;}s:37:\"ekit_icon_box_section_bg_ovelry_style\";a:7:{s:24:\"ekit_icon_box_show_image\";i:4;s:38:\"ekit_icon_box_image_ovelry_color_image\";i:4;s:47:\"ekit_icon_box_image_ovelry_color_video_fallback\";i:4;s:35:\"ekit_icon_box_bg_ovelry_color_image\";i:4;s:44:\"ekit_icon_box_bg_ovelry_color_video_fallback\";i:4;s:38:\"ekit_icon_box_bg_ovelry_color_hv_image\";i:4;s:47:\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\";i:4;}s:29:\"ekit_icon_box_badge_style_tab\";a:2:{s:36:\"ekit_icon_box_badge_background_image\";i:4;s:45:\"ekit_icon_box_badge_background_video_fallback\";i:4;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:4;s:23:\"pa_cursor_bgColor_image\";i:4;s:32:\"pa_cursor_bgColor_video_fallback\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:10:\"pp-counter\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:4;s:12:\"pp_icon_type\";i:4;s:4:\"icon\";i:4;s:13:\"counter_title\";i:4;s:14:\"counter_layout\";i:4;s:14:\"title_html_tag\";i:4;s:10:\"icon_image\";i:4;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:4;s:17:\"pa_badge_bg_image\";i:4;s:26:\"pa_badge_bg_video_fallback\";i:4;}}s:5:\"style\";a:2:{s:26:\"section_counter_icon_style\";a:4:{s:17:\"counter_icon_size\";i:4;s:21:\"counter_icon_rotation\";i:4;s:21:\"counter_icon_bg_image\";i:4;s:30:\"counter_icon_bg_video_fallback\";i:4;}s:27:\"section_counter_title_style\";a:1:{s:20:\"counter_title_margin\";i:4;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:4;s:23:\"pa_cursor_bgColor_image\";i:4;s:32:\"pa_cursor_bgColor_video_fallback\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:27:\"elementskit-image-accordion\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:30:\"ekit_img_accordion_content_tab\";a:2:{s:24:\"ekit_img_accordion_items\";i:4;s:15:\"active_behavior\";i:4;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:4;s:17:\"pa_badge_bg_image\";i:4;s:26:\"pa_badge_bg_video_fallback\";i:4;}}s:5:\"style\";a:4:{s:35:\"ekit_img_accordion_general_settings\";a:5:{s:29:\"ekit_img_accordion_min_height\";i:4;s:45:\"ekit_img_accordion_bg_active_color_background\";i:4;s:42:\"ekit_img_accordion_bg_active_color_color_b\";i:4;s:40:\"ekit_img_accordion_bg_active_color_image\";i:4;s:49:\"ekit_img_accordion_bg_active_color_video_fallback\";i:4;}s:55:\"ekit_img_accordion_section_img_accordion_title_settings\";a:1:{s:30:\"ekit_img_accordion_title_color\";i:4;}s:40:\"ekit_img_accordion_button_style_settings\";a:10:{s:44:\"ekit_img_accordion_btn_typography_typography\";i:4;s:45:\"ekit_img_accordion_btn_typography_font_family\";i:4;s:45:\"ekit_img_accordion_btn_typography_font_weight\";i:4;s:45:\"ekit_img_accordion_btn_typography_line_height\";i:4;s:33:\"ekit_img_accordion_btn_text_color\";i:4;s:43:\"ekit_img_accordion_btn_bg_color_group_color\";i:4;s:43:\"ekit_img_accordion_btn_bg_color_group_image\";i:4;s:52:\"ekit_img_accordion_btn_bg_color_group_video_fallback\";i:4;s:49:\"ekit_img_accordion_btn_bg_hover_color_group_image\";i:4;s:58:\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\";i:4;}s:32:\"ekit_img_accordion_style_section\";a:4:{s:36:\"ekit_img_accordion_pup_up_icon_color\";i:4;s:13:\"action_btn_bg\";i:4;s:42:\"ekit_img_accordion_pup_up_icon_color_hover\";i:4;s:19:\"action_btn_bg_hover\";i:4;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:4;s:23:\"pa_cursor_bgColor_image\";i:4;s:32:\"pa_cursor_bgColor_video_fallback\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}s:6:\"footer\";a:7:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:2:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:1:{s:11:\"align_items\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:15:\"hover_animation\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:1;s:21:\"space_between_widgets\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:1:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:26:\"section_background_overlay\";a:8:{s:29:\"background_overlay_background\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:32:\"background_overlay_gradient_type\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}s:18:\"section_background\";a:9:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}}s:6:\"layout\";a:1:{s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}}}}s:7:\"section\";a:20:{s:19:\"elementskit-heading\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:7;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;s:22:\"ekit_heading_title_tag\";i:6;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:7;s:22:\"ekit_heading_sub_title\";i:7;s:31:\"ekit_heading_sub_title_position\";i:7;s:26:\"ekit_heading_sub_title_tag\";i:7;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:7;s:24:\"ekit_heading_extra_title\";i:7;s:16:\"desciption_width\";i:7;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:7;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:7;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:7;s:40:\"ekit_heading_title_typography_typography\";i:6;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:6;s:41:\"ekit_heading_title_typography_font_weight\";i:6;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:8:{s:32:\"ekit_heading_focused_title_color\";i:3;s:33:\"ekit_heading_use_focused_title_bg\";i:1;s:38:\"ekit_heading_focused_title_color_hover\";i:1;s:48:\"ekit_heading_focused_title_typography_typography\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:40:\"ekit_heading_title_text_decoration_color\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_color\";i:1;s:48:\"ekit_heading_focus_title_shadow_text_shadow_type\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:7:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:7;s:28:\"ekit_heading_sub_title_color\";i:6;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:7;s:28:\"ekit_heading_seperator_color\";i:4;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:7;s:18:\"animation_duration\";i:7;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:33;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:33;s:21:\"space_between_widgets\";i:9;s:16:\"content_position\";i:14;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:5;s:17:\"pa_badge_bg_image\";i:5;s:26:\"pa_badge_bg_video_fallback\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:21;s:6:\"margin\";i:8;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:9;s:18:\"animation_duration\";i:9;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:5;s:23:\"pa_cursor_bgColor_image\";i:5;s:32:\"pa_cursor_bgColor_video_fallback\";i:5;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:15:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:8;s:25:\"background_video_fallback\";i:5;s:22:\"background_hover_image\";i:5;s:31:\"background_hover_video_fallback\";i:5;s:27:\"background_hover_background\";i:1;s:27:\"background_hover_transition\";i:1;s:29:\"background_hover_color_b_stop\";i:1;s:30:\"background_hover_gradient_type\";i:1;s:34:\"background_hover_gradient_position\";i:1;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:3;s:23:\"background_color_b_stop\";i:2;s:24:\"background_gradient_type\";i:2;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:2;}s:26:\"section_background_overlay\";a:18:{s:24:\"background_overlay_image\";i:7;s:33:\"background_overlay_video_fallback\";i:5;s:30:\"background_overlay_hover_image\";i:7;s:39:\"background_overlay_hover_video_fallback\";i:5;s:29:\"background_overlay_background\";i:3;s:29:\"background_overlay_color_stop\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:27:\"background_overlay_position\";i:2;s:23:\"background_overlay_size\";i:2;s:26:\"background_overlay_opacity\";i:2;s:22:\"css_filters_brightness\";i:2;s:20:\"css_filters_saturate\";i:2;s:35:\"background_overlay_hover_background\";i:2;s:33:\"background_overlay_hover_position\";i:2;s:29:\"background_overlay_hover_size\";i:2;s:32:\"background_overlay_hover_opacity\";i:2;s:28:\"css_filters_hover_brightness\";i:2;s:35:\"background_overlay_hover_transition\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:12:{s:21:\"background_background\";i:13;s:16:\"background_image\";i:10;s:19:\"background_position\";i:7;s:15:\"background_ypos\";i:1;s:21:\"background_attachment\";i:5;s:17:\"background_repeat\";i:1;s:19:\"background_bg_width\";i:1;s:15:\"background_size\";i:6;s:25:\"background_video_fallback\";i:3;s:22:\"background_hover_image\";i:3;s:31:\"background_hover_video_fallback\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:14:{s:29:\"background_overlay_background\";i:7;s:26:\"background_overlay_opacity\";i:5;s:24:\"background_overlay_image\";i:4;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;s:31:\"background_overlay_color_b_stop\";i:3;s:33:\"background_overlay_gradient_angle\";i:2;s:24:\"background_overlay_color\";i:3;s:29:\"background_overlay_color_stop\";i:1;s:33:\"background_overlay_video_fallback\";i:3;s:30:\"background_overlay_hover_image\";i:3;s:39:\"background_overlay_hover_video_fallback\";i:3;s:26:\"background_overlay_color_b\";i:1;s:32:\"background_overlay_gradient_type\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:13;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:3;s:23:\"pa_cursor_bgColor_image\";i:3;s:32:\"pa_cursor_bgColor_video_fallback\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}s:6:\"layout\";a:3:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:3;s:17:\"pa_badge_bg_image\";i:3;s:26:\"pa_badge_bg_video_fallback\";i:3;}s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:2;s:3:\"gap\";i:3;s:6:\"layout\";i:1;}}}}s:25:\"elementskit-contact-form7\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"link\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:15:\"hover_animation\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;}s:17:\"section_style_box\";a:4:{s:10:\"icon_space\";i:3;s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:22:\"gallery_vertical_align\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_image\";a:1:{s:5:\"image\";i:7;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:8:\"advanced\";a:4:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:6:{s:11:\"_mask_image\";i:2;s:12:\"_mask_switch\";i:2;s:11:\"_mask_shape\";i:2;s:10:\"_mask_size\";i:2;s:14:\"_mask_position\";i:1;s:16:\"_mask_position_x\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:7:{s:5:\"width\";i:6;s:22:\"css_filters_css_filter\";i:3;s:22:\"css_filters_brightness\";i:3;s:20:\"css_filters_saturate\";i:2;s:28:\"css_filters_hover_css_filter\";i:2;s:28:\"css_filters_hover_brightness\";i:2;s:27:\"background_hover_transition\";i:2;}}}}s:13:\"ekit-nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:6:{s:35:\"elementskit_style_tab_submenu_panel\";a:9:{s:35:\"elementskit_submenu_container_width\";i:1;s:17:\"sub_panel_padding\";i:1;s:39:\"elementskit_panel_submenu_border_border\";i:1;s:38:\"elementskit_panel_submenu_border_width\";i:1;s:38:\"elementskit_panel_submenu_border_color\";i:1;s:51:\"elementskit_submenu_container_background_background\";i:1;s:46:\"elementskit_submenu_container_background_color\";i:1;s:46:\"elementskit_submenu_container_background_image\";i:1;s:55:\"elementskit_submenu_container_background_video_fallback\";i:1;}s:26:\"elementskit_menu_style_tab\";a:4:{s:26:\"elementskit_menubar_height\";i:1;s:27:\"ekit_menu_item_icon_spacing\";i:1;s:36:\"elementskit_menubar_background_image\";i:1;s:45:\"elementskit_menubar_background_video_fallback\";i:1;}s:30:\"elementskit_style_tab_menuitem\";a:19:{s:27:\"elementskit_menu_text_color\";i:1;s:28:\"elementskit_item_color_hover\";i:1;s:38:\"elementskit_nav_menu_active_text_color\";i:1;s:29:\"elementskit_menu_item_spacing\";i:1;s:41:\"elementskit_content_typography_typography\";i:1;s:42:\"elementskit_content_typography_font_family\";i:1;s:40:\"elementskit_content_typography_font_size\";i:1;s:42:\"elementskit_content_typography_font_weight\";i:1;s:42:\"elementskit_content_typography_line_height\";i:1;s:38:\"elementskit_item_background_background\";i:1;s:44:\"elementskit_item_background_hover_background\";i:1;s:47:\"elementskit_nav_menu_active_bg_color_background\";i:1;s:42:\"elementskit_nav_menu_active_bg_color_color\";i:1;s:33:\"elementskit_item_background_image\";i:1;s:42:\"elementskit_item_background_video_fallback\";i:1;s:39:\"elementskit_item_background_hover_image\";i:1;s:48:\"elementskit_item_background_hover_video_fallback\";i:1;s:42:\"elementskit_nav_menu_active_bg_color_image\";i:1;s:51:\"elementskit_nav_menu_active_bg_color_video_fallback\";i:1;}s:39:\"elementskit_style_tab_submenu_indicator\";a:2:{s:45:\"elementskit_style_tab_submenu_indicator_color\";i:1;s:30:\"ekit_submenu_indicator_spacing\";i:1;}s:34:\"elementskit_style_tab_submenu_item\";a:20:{s:43:\"elementskit_menu_item_typography_typography\";i:1;s:44:\"elementskit_menu_item_typography_font_family\";i:1;s:42:\"elementskit_menu_item_typography_font_size\";i:1;s:44:\"elementskit_menu_item_typography_font_weight\";i:1;s:44:\"elementskit_menu_item_typography_line_height\";i:1;s:32:\"elementskit_submenu_item_spacing\";i:1;s:30:\"elementskit_submenu_item_color\";i:1;s:33:\"elementskit_item_text_color_hover\";i:1;s:49:\"elementskit_menu_item_background_hover_background\";i:1;s:44:\"elementskit_menu_item_background_hover_color\";i:1;s:42:\"elementskit_nav_sub_menu_active_text_color\";i:1;s:43:\"elementskit_menu_item_background_background\";i:1;s:38:\"elementskit_menu_item_background_color\";i:1;s:51:\"elementskit_nav_sub_menu_active_bg_color_background\";i:1;s:38:\"elementskit_menu_item_background_image\";i:1;s:47:\"elementskit_menu_item_background_video_fallback\";i:1;s:44:\"elementskit_menu_item_background_hover_image\";i:1;s:53:\"elementskit_menu_item_background_hover_video_fallback\";i:1;s:46:\"elementskit_nav_sub_menu_active_bg_color_image\";i:1;s:55:\"elementskit_nav_sub_menu_active_bg_color_video_fallback\";i:1;}s:33:\"elementskit_menu_toggle_style_tab\";a:25:{s:45:\"elementskit_menu_toggle_background_background\";i:1;s:40:\"elementskit_menu_toggle_background_color\";i:1;s:37:\"elementskit_menu_toggle_border_border\";i:1;s:34:\"elementskit_menu_toggle_icon_color\";i:1;s:40:\"elementskit_menu_toggle_icon_color_hover\";i:1;s:36:\"elementskit_menu_close_border_border\";i:1;s:35:\"elementskit_menu_close_border_color\";i:1;s:33:\"elementskit_menu_close_icon_color\";i:1;s:36:\"elementskit_menu_toggle_border_color\";i:1;s:44:\"elementskit_menu_close_typography_typography\";i:1;s:45:\"elementskit_menu_close_typography_font_family\";i:1;s:43:\"elementskit_menu_close_typography_font_size\";i:1;s:45:\"elementskit_menu_close_typography_font_weight\";i:1;s:45:\"elementskit_menu_close_typography_line_height\";i:1;s:44:\"elementskit_menu_close_background_background\";i:1;s:39:\"elementskit_menu_close_background_color\";i:1;s:39:\"elementskit_menu_close_icon_color_hover\";i:1;s:40:\"elementskit_menu_toggle_background_image\";i:1;s:49:\"elementskit_menu_toggle_background_video_fallback\";i:1;s:46:\"elementskit_menu_toggle_background_hover_image\";i:1;s:55:\"elementskit_menu_toggle_background_hover_video_fallback\";i:1;s:39:\"elementskit_menu_close_background_image\";i:1;s:48:\"elementskit_menu_close_background_video_fallback\";i:1;s:45:\"elementskit_menu_close_background_hover_image\";i:1;s:54:\"elementskit_menu_close_background_hover_video_fallback\";i:1;}}s:7:\"content\";a:3:{s:23:\"elementskit_content_tab\";a:4:{s:20:\"elementskit_nav_menu\";i:1;s:30:\"elementskit_main_menu_position\";i:1;s:27:\"elementskit_one_page_enable\";i:1;s:40:\"elementskit_style_tab_submenu_item_arrow\";i:1;}s:23:\"elementskit_mobile_menu\";a:3:{s:26:\"elementskit_hamburger_icon\";i:1;s:18:\"submenu_click_area\";i:1;s:25:\"elementskit_nav_menu_logo\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:25:\"elementskit-header-search\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"ekit_header_search\";a:1:{s:17:\"ekit_search_icons\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:36:\"ekit_header_search_section_tab_style\";a:5:{s:23:\"ekit_searech_icon_color\";i:1;s:25:\"ekit_seacrh_icon_bg_color\";i:1;s:29:\"ekit_searech_icon_hover_color\";i:1;s:31:\"ekit_seacrh_icon_hover_bg_color\";i:1;s:18:\"ekit_search_margin\";i:1;}s:32:\"ekit_search_container_style_tabs\";a:3:{s:42:\"ekit_search_backdrop_background_background\";i:1;s:37:\"ekit_search_backdrop_background_image\";i:1;s:46:\"ekit_search_backdrop_background_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:18:\"premium-addon-blog\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:24:\"general_settings_section\";a:2:{s:17:\"premium_blog_grid\";i:1;s:28:\"premium_blog_number_of_posts\";i:1;}}s:5:\"style\";a:1:{s:29:\"post_categories_style_section\";a:1:{s:19:\"categories_repeater\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:7;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:5;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:11:\"title_color\";i:1;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:4;s:22:\"typography_line_height\";i:4;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:17:\"elementskit-video\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:32:\"ekit_video_popup_content_section\";a:6:{s:27:\"ekit_video_popup_video_type\";i:1;s:19:\"ekit_video_self_url\";i:1;s:29:\"ekit_video_player_self_hosted\";i:1;s:26:\"ekit_video_popup_auto_play\";i:1;s:27:\"ekit_video_popup_video_mute\";i:1;s:17:\"self_poster_image\";i:1;}}s:5:\"style\";a:1:{s:30:\"ekit_video_popup_section_style\";a:3:{s:26:\"ekit_video_popup_icon_size\";i:1;s:40:\"ekit_video_popup_btn_bg_color_background\";i:1;s:35:\"ekit_video_popup_btn_bg_color_image\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}}}}s:18:\"pp-image-accordion\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_items\";a:1:{s:15:\"accordion_items\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:3;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:21:\"typography_typography\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}}}s:20:\"elementskit-icon-box\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"ekit_icon_box\";a:4:{s:32:\"ekit_icon_box_enable_header_icon\";i:4;s:24:\"ekit_icon_box_title_text\";i:4;s:30:\"ekit_icon_box_description_text\";i:4;s:26:\"ekit_icon_box_header_image\";i:4;}s:30:\"ekit_icon_box_section_settings\";a:1:{s:24:\"ekit_icon_box_title_size\";i:4;}s:28:\"ekit_icon_box_section_button\";a:2:{s:24:\"ekit_icon_box_enable_btn\";i:1;s:21:\"ekit_icon_box_btn_url\";i:1;}}s:5:\"style\";a:5:{s:38:\"ekit_icon_box_section_background_style\";a:11:{s:41:\"ekit_icon_box_infobox_bg_group_background\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_color\";i:4;s:40:\"ekit_icon_box_iocnbox_border_group_width\";i:4;s:36:\"ekit_icon_box_infobox_border_radious\";i:4;s:47:\"ekit_icon_box_infobox_bg_hover_group_background\";i:4;s:42:\"ekit_icon_box_infobox_bg_hover_group_color\";i:2;s:44:\"ekit_icon_box_infobox_bg_hover_group_color_b\";i:4;s:38:\"ekit_icon_box_info_box_hover_animation\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_image\";i:2;s:32:\"ekit_icon_box_infobox_bg_padding\";i:4;s:38:\"ekit_icon_box_infobox_bg_group_color_b\";i:2;}s:31:\"ekit_icon_section_style_content\";a:13:{s:27:\"ekit_icon_description_color\";i:3;s:33:\"ekit_icon_description_color_hover\";i:2;s:49:\"ekit_icon_description_typography_group_typography\";i:3;s:50:\"ekit_icon_description_typography_group_font_family\";i:3;s:50:\"ekit_icon_description_typography_group_font_weight\";i:3;s:50:\"ekit_icon_description_typography_group_line_height\";i:3;s:21:\"ekit_icon_title_color\";i:2;s:27:\"ekit_icon_title_color_hover\";i:2;s:43:\"ekit_icon_title_typography_group_typography\";i:2;s:44:\"ekit_icon_title_typography_group_font_family\";i:2;s:42:\"ekit_icon_title_typography_group_font_size\";i:2;s:44:\"ekit_icon_title_typography_group_font_weight\";i:2;s:44:\"ekit_icon_title_typography_group_line_height\";i:2;}s:32:\"ekit_icon_box_section_style_icon\";a:3:{s:32:\"ekit_icon_box_icon_primary_color\";i:4;s:25:\"ekit_icon_box_icon_height\";i:4;s:24:\"ekit_icon_box_icon_width\";i:4;}s:37:\"ekit_icon_box_section_bg_ovelry_style\";a:1:{s:24:\"ekit_icon_box_show_image\";i:4;}s:27:\"ekit_icon_box_section_style\";a:2:{s:45:\"ekit_icon_box_btn_background_group_background\";i:1;s:51:\"ekit_icon_box_btn_background_hover_group_background\";i:1;}}}}s:10:\"pp-counter\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:2;s:12:\"pp_icon_type\";i:2;s:4:\"icon\";i:2;s:13:\"counter_title\";i:2;s:14:\"counter_layout\";i:2;s:14:\"title_html_tag\";i:2;s:10:\"icon_image\";i:2;}}s:5:\"style\";a:3:{s:26:\"section_counter_icon_style\";a:2:{s:17:\"counter_icon_size\";i:2;s:21:\"counter_icon_rotation\";i:2;}s:27:\"section_counter_title_style\";a:1:{s:20:\"counter_title_margin\";i:2;}s:25:\"section_counter_num_style\";a:1:{s:17:\"counter_num_color\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:15:\"hover_animation\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}}s:6:\"header\";a:4:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:4:\"menu\";i:1;s:11:\"align_items\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:3:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}s:7:\"wp-page\";a:23:{s:19:\"elementskit-heading\";a:2:{s:5:\"count\";i:24;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:24;s:22:\"ekit_heading_title_tag\";i:21;s:17:\"show_title_border\";i:6;s:16:\"title_float_left\";i:6;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:24;s:22:\"ekit_heading_sub_title\";i:24;s:31:\"ekit_heading_sub_title_position\";i:23;s:26:\"ekit_heading_sub_title_tag\";i:24;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:24;s:24:\"ekit_heading_extra_title\";i:24;s:16:\"desciption_width\";i:24;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:24;s:27:\"ekit_heading_show_seperator\";i:5;s:28:\"ekit_heading_seperator_image\";i:24;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:24;s:40:\"ekit_heading_title_typography_typography\";i:20;s:41:\"ekit_heading_title_typography_font_family\";i:5;s:39:\"ekit_heading_title_typography_font_size\";i:20;s:41:\"ekit_heading_title_typography_font_weight\";i:17;s:41:\"ekit_heading_title_typography_line_height\";i:5;}s:40:\"ekit_heading_section_focused_title_style\";a:11:{s:32:\"ekit_heading_focused_title_color\";i:13;s:49:\"ekit_heading_focused_title_typography_font_family\";i:3;s:47:\"ekit_heading_focused_title_typography_font_size\";i:6;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:3;s:49:\"ekit_heading_focused_title_typography_line_height\";i:3;s:48:\"ekit_heading_focus_title_shadow_text_shadow_type\";i:3;s:33:\"ekit_heading_use_focused_title_bg\";i:3;s:38:\"ekit_heading_focused_title_color_hover\";i:5;s:48:\"ekit_heading_focused_title_typography_typography\";i:3;s:40:\"ekit_heading_title_text_decoration_color\";i:3;s:45:\"ekit_heading_focused_title_secondary_bg_color\";i:3;}s:36:\"ekit_heading_section_sub_title_style\";a:8:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:24;s:28:\"ekit_heading_sub_title_color\";i:17;s:44:\"ekit_heading_sub_title_typography_typography\";i:3;s:45:\"ekit_heading_sub_title_typography_font_family\";i:3;s:43:\"ekit_heading_sub_title_typography_font_size\";i:3;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:3;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:3;s:28:\"ekit_heading_sub_title_margn\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:24;s:28:\"ekit_heading_seperator_color\";i:17;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:6;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:24;s:18:\"animation_duration\";i:24;s:6:\"sticky\";i:3;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}s:18:\"section_premium_fe\";a:6:{s:21:\"premium_fe_Xtranslate\";i:1;s:21:\"premium_fe_Ytranslate\";i:1;s:26:\"premium_fe_rotate_switcher\";i:1;s:18:\"premium_fe_Xrotate\";i:1;s:18:\"premium_fe_Yrotate\";i:1;s:18:\"premium_fe_Zrotate\";i:1;}}}}s:13:\"archive-posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:30:\"archive_classic_meta_separator\";i:1;s:33:\"archive_cards_thumbnail_size_size\";i:1;s:24:\"archive_cards_item_ratio\";i:1;s:28:\"archive_cards_read_more_text\";i:1;s:25:\"archive_cards_show_avatar\";i:1;s:28:\"archive_cards_show_read_more\";i:1;s:28:\"archive_cards_excerpt_length\";i:1;s:23:\"archive_cards_meta_data\";i:1;s:23:\"archive_classic_masonry\";i:1;}s:16:\"section_advanced\";a:1:{s:21:\"nothing_found_message\";i:1;}}s:5:\"style\";a:7:{s:33:\"archive_cards_section_design_card\";a:5:{s:27:\"archive_cards_card_bg_color\";i:1;s:32:\"archive_cards_card_border_radius\";i:1;s:31:\"archive_cards_meta_border_color\";i:1;s:26:\"archive_cards_card_padding\";i:1;s:26:\"archive_cards_hover_effect\";i:1;}s:34:\"archive_cards_section_design_image\";a:7:{s:28:\"archive_cards_badge_bg_color\";i:1;s:25:\"archive_cards_badge_color\";i:1;s:27:\"archive_cards_image_spacing\";i:1;s:28:\"archive_cards_badge_position\";i:1;s:26:\"archive_cards_badge_radius\";i:1;s:24:\"archive_cards_badge_size\";i:1;s:26:\"archive_cards_badge_margin\";i:1;}s:36:\"archive_cards_section_design_content\";a:6:{s:25:\"archive_cards_title_color\";i:1;s:27:\"archive_cards_excerpt_color\";i:1;s:29:\"archive_cards_read_more_color\";i:1;s:27:\"archive_cards_title_spacing\";i:1;s:29:\"archive_cards_excerpt_spacing\";i:1;s:31:\"archive_cards_read_more_spacing\";i:1;}s:24:\"section_pagination_style\";a:9:{s:16:\"pagination_color\";i:1;s:22:\"pagination_hover_color\";i:1;s:23:\"pagination_active_color\";i:1;s:18:\"pagination_spacing\";i:1;s:32:\"pagination_typography_typography\";i:1;s:33:\"pagination_typography_font_family\";i:1;s:31:\"pagination_typography_font_size\";i:1;s:33:\"pagination_typography_font_weight\";i:1;s:33:\"pagination_typography_line_height\";i:1;}s:27:\"section_nothing_found_style\";a:6:{s:19:\"nothing_found_color\";i:1;s:35:\"nothing_found_typography_typography\";i:1;s:36:\"nothing_found_typography_font_family\";i:1;s:34:\"nothing_found_typography_font_size\";i:1;s:36:\"nothing_found_typography_font_weight\";i:1;s:36:\"nothing_found_typography_line_height\";i:1;}s:35:\"archive_cards_section_design_layout\";a:2:{s:23:\"archive_cards_alignment\";i:1;s:21:\"archive_cards_row_gap\";i:1;}s:13:\"section_style\";a:2:{s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:72;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:13:\"section_style\";a:15:{s:16:\"background_image\";i:7;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_background\";i:13;s:19:\"background_position\";i:6;s:15:\"background_size\";i:6;s:23:\"background_color_b_stop\";i:4;s:24:\"background_gradient_type\";i:4;s:17:\"background_repeat\";i:2;s:27:\"background_hover_background\";i:1;s:27:\"background_hover_transition\";i:1;s:29:\"background_hover_color_b_stop\";i:1;s:30:\"background_hover_gradient_type\";i:1;s:34:\"background_hover_gradient_position\";i:1;}s:26:\"section_background_overlay\";a:18:{s:24:\"background_overlay_image\";i:5;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:5;s:39:\"background_overlay_hover_video_fallback\";i:1;s:29:\"background_overlay_background\";i:6;s:27:\"background_overlay_position\";i:4;s:23:\"background_overlay_size\";i:4;s:26:\"background_overlay_opacity\";i:4;s:22:\"css_filters_brightness\";i:4;s:20:\"css_filters_saturate\";i:4;s:35:\"background_overlay_hover_background\";i:4;s:33:\"background_overlay_hover_position\";i:4;s:29:\"background_overlay_hover_size\";i:4;s:32:\"background_overlay_hover_opacity\";i:4;s:28:\"css_filters_hover_brightness\";i:4;s:35:\"background_overlay_hover_transition\";i:4;s:29:\"background_overlay_color_stop\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:6;s:12:\"border_width\";i:7;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:68;s:16:\"content_position\";i:30;s:21:\"space_between_widgets\";i:19;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:53;s:6:\"margin\";i:18;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:26;s:18:\"animation_duration\";i:26;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:43;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:14:{s:21:\"background_background\";i:32;s:19:\"background_position\";i:22;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:20;s:16:\"background_image\";i:22;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_attachment\";i:13;s:16:\"background_color\";i:7;s:15:\"background_ypos\";i:3;s:19:\"background_bg_width\";i:3;s:15:\"background_xpos\";i:1;s:38:\"background_motion_fx_translateY_effect\";i:1;}s:26:\"section_background_overlay\";a:13:{s:24:\"background_overlay_image\";i:7;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;s:29:\"background_overlay_background\";i:19;s:27:\"background_overlay_position\";i:6;s:23:\"background_overlay_size\";i:6;s:26:\"background_overlay_opacity\";i:14;s:31:\"background_overlay_color_b_stop\";i:3;s:33:\"background_overlay_gradient_angle\";i:3;s:24:\"background_overlay_color\";i:6;s:26:\"background_overlay_color_b\";i:1;s:29:\"background_overlay_color_stop\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:29;s:11:\"_element_id\";i:2;s:6:\"margin\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:18:\"animation_duration\";i:4;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"_title\";i:1;s:3:\"gap\";i:8;s:13:\"content_width\";i:3;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:28;}}}}s:25:\"elementskit-contact-form7\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:5;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:5;s:36:\"ekit_contact_form_input_label_margin\";i:5;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:5;s:36:\"ekit_contact_form_input_style_height\";i:5;s:45:\"ekit_contact_form_input_style_textarea_height\";i:5;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:5;s:51:\"ekit_contact_form_input_style_background_background\";i:5;s:46:\"ekit_contact_form_input_style_background_color\";i:5;s:43:\"ekit_contact_form_input_style_border_border\";i:5;s:42:\"ekit_contact_form_input_style_border_width\";i:5;s:42:\"ekit_contact_form_input_style_border_color\";i:5;s:45:\"ekit_contact_form_input_typography_typography\";i:5;s:46:\"ekit_contact_form_input_typography_font_family\";i:5;s:44:\"ekit_contact_form_input_typography_font_size\";i:5;s:46:\"ekit_contact_form_input_typography_font_weight\";i:5;s:46:\"ekit_contact_form_input_typography_line_height\";i:5;s:40:\"ekit_contact_form_input_style_font_color\";i:5;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:5;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:5;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:5;s:47:\"ekit_contact_form_button_style_use_width_height\";i:5;s:46:\"ekit_contact_form_button_background_background\";i:5;s:38:\"ekit_contact_form_button_border_border\";i:5;s:37:\"ekit_contact_form_button_border_width\";i:5;s:52:\"ekit_contact_form_button_hover_background_background\";i:5;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:12;s:10:\"title_text\";i:12;s:16:\"description_text\";i:12;s:10:\"title_size\";i:12;s:4:\"link\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:15:\"hover_animation\";i:12;s:9:\"icon_size\";i:12;s:13:\"primary_color\";i:11;}s:17:\"section_style_box\";a:4:{s:10:\"icon_space\";i:12;s:10:\"text_align\";i:12;s:18:\"title_bottom_space\";i:12;s:8:\"position\";i:12;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:12;s:26:\"title_typography_font_size\";i:12;s:28:\"title_typography_font_weight\";i:12;s:28:\"title_typography_line_height\";i:12;s:34:\"description_typography_font_family\";i:12;s:34:\"description_typography_font_weight\";i:12;s:34:\"description_typography_line_height\";i:12;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:18:\"section_premium_fe\";a:4:{s:19:\"premium_fe_switcher\";i:1;s:29:\"premium_fe_translate_switcher\";i:1;s:21:\"premium_fe_Xtranslate\";i:1;s:25:\"premium_fe_trans_duration\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:12;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:12;s:11:\"header_size\";i:10;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:22:\"typography_font_family\";i:10;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:10;s:25:\"typography_letter_spacing\";i:1;s:22:\"typography_line_height\";i:9;s:21:\"typography_typography\";i:1;s:23:\"text_stroke_text_stroke\";i:1;s:5:\"align\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:8;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:18:\"animation_duration\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:4;s:22:\"typography_font_family\";i:4;s:22:\"typography_font_weight\";i:4;s:22:\"typography_line_height\";i:4;s:21:\"typography_typography\";i:2;s:25:\"typography_letter_spacing\";i:2;s:23:\"typography_word_spacing\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:4:\"link\";i:2;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:17:\"button_text_color\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:20:\"elementskit-icon-box\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"ekit_icon_box\";a:4:{s:32:\"ekit_icon_box_enable_header_icon\";i:8;s:24:\"ekit_icon_box_title_text\";i:8;s:30:\"ekit_icon_box_description_text\";i:8;s:26:\"ekit_icon_box_header_image\";i:8;}s:30:\"ekit_icon_box_section_settings\";a:1:{s:24:\"ekit_icon_box_title_size\";i:8;}s:28:\"ekit_icon_box_section_button\";a:2:{s:24:\"ekit_icon_box_enable_btn\";i:2;s:21:\"ekit_icon_box_btn_url\";i:2;}}s:5:\"style\";a:5:{s:38:\"ekit_icon_box_section_background_style\";a:11:{s:41:\"ekit_icon_box_infobox_bg_group_background\";i:8;s:36:\"ekit_icon_box_infobox_bg_group_color\";i:8;s:40:\"ekit_icon_box_iocnbox_border_group_width\";i:8;s:36:\"ekit_icon_box_infobox_border_radious\";i:8;s:47:\"ekit_icon_box_infobox_bg_hover_group_background\";i:8;s:42:\"ekit_icon_box_infobox_bg_hover_group_color\";i:4;s:44:\"ekit_icon_box_infobox_bg_hover_group_color_b\";i:8;s:38:\"ekit_icon_box_info_box_hover_animation\";i:8;s:36:\"ekit_icon_box_infobox_bg_group_image\";i:4;s:32:\"ekit_icon_box_infobox_bg_padding\";i:8;s:38:\"ekit_icon_box_infobox_bg_group_color_b\";i:4;}s:31:\"ekit_icon_section_style_content\";a:13:{s:27:\"ekit_icon_description_color\";i:6;s:33:\"ekit_icon_description_color_hover\";i:4;s:49:\"ekit_icon_description_typography_group_typography\";i:6;s:50:\"ekit_icon_description_typography_group_font_family\";i:6;s:50:\"ekit_icon_description_typography_group_font_weight\";i:6;s:50:\"ekit_icon_description_typography_group_line_height\";i:6;s:21:\"ekit_icon_title_color\";i:4;s:27:\"ekit_icon_title_color_hover\";i:4;s:43:\"ekit_icon_title_typography_group_typography\";i:4;s:44:\"ekit_icon_title_typography_group_font_family\";i:4;s:42:\"ekit_icon_title_typography_group_font_size\";i:4;s:44:\"ekit_icon_title_typography_group_font_weight\";i:4;s:44:\"ekit_icon_title_typography_group_line_height\";i:4;}s:32:\"ekit_icon_box_section_style_icon\";a:3:{s:32:\"ekit_icon_box_icon_primary_color\";i:8;s:25:\"ekit_icon_box_icon_height\";i:8;s:24:\"ekit_icon_box_icon_width\";i:8;}s:37:\"ekit_icon_box_section_bg_ovelry_style\";a:1:{s:24:\"ekit_icon_box_show_image\";i:8;}s:27:\"ekit_icon_box_section_style\";a:2:{s:45:\"ekit_icon_box_btn_background_group_background\";i:2;s:51:\"ekit_icon_box_btn_background_hover_group_background\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:8:{s:5:\"width\";i:8;s:22:\"css_filters_css_filter\";i:6;s:22:\"css_filters_brightness\";i:6;s:20:\"css_filters_saturate\";i:4;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:4;s:27:\"background_hover_transition\";i:4;s:21:\"css_filters_hover_hue\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:2;}s:16:\"_section_masking\";a:5:{s:12:\"_mask_switch\";i:4;s:11:\"_mask_shape\";i:4;s:10:\"_mask_size\";i:4;s:14:\"_mask_position\";i:2;s:16:\"_mask_position_x\";i:2;}}}}s:10:\"pp-counter\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:2;s:12:\"pp_icon_type\";i:2;s:4:\"icon\";i:2;s:13:\"counter_title\";i:2;s:14:\"counter_layout\";i:2;s:14:\"title_html_tag\";i:2;s:10:\"icon_image\";i:2;}}s:5:\"style\";a:3:{s:26:\"section_counter_icon_style\";a:2:{s:17:\"counter_icon_size\";i:2;s:21:\"counter_icon_rotation\";i:2;}s:27:\"section_counter_title_style\";a:1:{s:20:\"counter_title_margin\";i:2;}s:25:\"section_counter_num_style\";a:1:{s:17:\"counter_num_color\";i:2;}}}}s:17:\"elementskit-video\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:32:\"ekit_video_popup_content_section\";a:6:{s:27:\"ekit_video_popup_video_type\";i:2;s:29:\"ekit_video_player_self_hosted\";i:2;s:26:\"ekit_video_popup_auto_play\";i:2;s:27:\"ekit_video_popup_video_mute\";i:2;s:17:\"self_poster_image\";i:2;s:28:\"ekit_video_self_external_url\";i:1;}}s:5:\"style\";a:1:{s:30:\"ekit_video_popup_section_style\";a:3:{s:26:\"ekit_video_popup_icon_size\";i:2;s:40:\"ekit_video_popup_btn_bg_color_background\";i:2;s:35:\"ekit_video_popup_btn_bg_color_image\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:2;s:17:\"_background_image\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:18:\"pp-image-accordion\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_items\";a:1:{s:15:\"accordion_items\";i:2;}}}}s:16:\"pp-logo-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:21:\"section_logo_carousel\";a:1:{s:15:\"carousel_slides\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_logos_style\";a:1:{s:24:\"logos_vertical_alignment\";i:1;}}}}s:23:\"elementskit-testimonial\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:41:\"ekit_testimonial_layout_section_tab_style\";a:1:{s:22:\"ekit_testimonial_style\";i:1;}s:34:\"ekit_testimonial_section_tab_style\";a:5:{s:30:\"ekit_testimonial_rating_enable\";i:1;s:21:\"ekit_testimonial_data\";i:1;s:43:\"ekit_testimonial_wartermark_custom_position\";i:1;s:52:\"ekit_testimonial_wartermark_custom_position_offset_x\";i:1;s:52:\"ekit_testimonial_wartermark_custom_position_offset_y\";i:1;}s:32:\"ekit_testimonial_layout_settings\";a:1:{s:35:\"ekit_testimonial_left_right_spacing\";i:1;}}s:5:\"style\";a:6:{s:31:\"ekit_testimonial_section_layout\";a:4:{s:30:\"ekit_testimonial_layout_margin\";i:1;s:31:\"ekit_testimonial_layout_padding\";i:1;s:45:\"ekit_testimonial_layout_background_background\";i:1;s:40:\"ekit_testimonial_layout_background_color\";i:1;}s:37:\"ekit_testimonial_section_wraper_style\";a:2:{s:52:\"ekit_testimonial_section_wraper_horizontal_alignment\";i:1;s:39:\"ekit_testimonial_section_wraper_padding\";i:1;}s:36:\"ekit_testimonial_content_description\";a:7:{s:34:\"ekit_testimonial_description_color\";i:1;s:41:\"ekit_testimonial_description_active_color\";i:1;s:50:\"ekit_testimonial_description_typography_typography\";i:1;s:51:\"ekit_testimonial_description_typography_font_family\";i:1;s:51:\"ekit_testimonial_description_typography_font_weight\";i:1;s:51:\"ekit_testimonial_description_typography_line_height\";i:1;s:35:\"ekit_testimonial_description_margin\";i:1;}s:41:\"ekit_testimonial_section_wathermark_style\";a:2:{s:41:\"ekit_testimonial_section_wathermark_color\";i:1;s:48:\"ekit_testimonial_section_wathermark_icon_padding\";i:1;}s:39:\"ekit_testimonial_client_content_section\";a:2:{s:34:\"ekit_testimonial_client_image_size\";i:1;s:41:\"ekit_testimonial_client_name_normal_color\";i:1;}s:36:\"ekit_testimonial_title_separetor_tab\";a:1:{s:38:\"ekit_testimonial_title_separator_color\";i:1;}}}}s:18:\"premium-addon-blog\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:24:\"general_settings_section\";a:2:{s:17:\"premium_blog_grid\";i:1;s:28:\"premium_blog_number_of_posts\";i:1;}}s:5:\"style\";a:1:{s:29:\"post_categories_style_section\";a:1:{s:19:\"categories_repeater\";i:1;}}}}s:19:\"elementskit-pricing\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:3;}}s:7:\"content\";a:4:{s:25:\"ekit_pricing_pricing_plan\";a:5:{s:24:\"ekit_pricing_table_title\";i:3;s:27:\"ekit_pricing_table_subtitle\";i:3;s:22:\"ekit_pricing_icon_type\";i:3;s:18:\"ekit_pricing_image\";i:3;s:18:\"ekit_pricing_icons\";i:3;}s:24:\"ekit_pricing_pricing_tag\";a:2:{s:24:\"ekit_pricing_table_price\";i:3;s:27:\"ekit_pricing_table_duration\";i:3;}s:25:\"ekit_pricing_features_tab\";a:3:{s:35:\"ekit_pricing_table_content_repeater\";i:3;s:26:\"ekit_pricing_table_content\";i:3;s:26:\"ekit_pricing_content_style\";i:3;}s:29:\"ekit_pricing_button_style_tab\";a:2:{s:21:\"ekit_pricing_btn_text\";i:3;s:21:\"ekit_pricing_btn_link\";i:3;}}s:5:\"style\";a:6:{s:32:\"sekit_pricing_ection_title_style\";a:2:{s:30:\"ekit_pricing_title_hover_color\";i:3;s:29:\"ekit_pricing_title_text_color\";i:3;}s:30:\"ekit_pricing_section_tag_style\";a:16:{s:48:\"ekit_pricing_tag_bg_hover_color_group_background\";i:3;s:30:\"ekit_pricing_tag_border_radius\";i:3;s:36:\"ekit_pricing_tag_bg_color_background\";i:3;s:31:\"ekit_pricing_tag_bg_color_color\";i:3;s:33:\"ekit_pricing_tag_bg_color_color_b\";i:3;s:40:\"ekit_pricing_tag_bg_color_gradient_angle\";i:3;s:45:\"ekit_pricing_tag_bg_hover_color_group_color_b\";i:3;s:52:\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\";i:3;s:29:\"ekit_pricing_tag_text_padding\";i:3;s:28:\"ekit_pricing_tag_text_margin\";i:3;s:30:\"ekit_pricing_period_text_color\";i:3;s:37:\"ekit_pricing_period_vertical_position\";i:3;s:27:\"ekit_pricing_tag_text_color\";i:3;s:29:\"ekit_pricing_tag_border_color\";i:3;s:46:\"ekit_pricing_price_typography_group_typography\";i:3;s:47:\"ekit_pricing_period_typography_group_typography\";i:3;}s:30:\"ekit_pricing_section_btn_style\";a:11:{s:28:\"ekit_pricing_btn_hover_color\";i:3;s:48:\"ekit_pricing_btn_bg_hover_color_group_background\";i:3;s:43:\"ekit_pricing_btn_bg_hover_color_group_color\";i:2;s:34:\"ekit_pricing_btn_border_dimensions\";i:3;s:29:\"ekit_pricing_btn_border_color\";i:3;s:35:\"ekit_pricing_btn_hover_border_color\";i:3;s:45:\"ekit_pricing_btn_bg_hover_color_group_color_b\";i:3;s:52:\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\";i:3;s:42:\"ekit_pricing_btn_bg_color_group_background\";i:3;s:37:\"ekit_pricing_btn_bg_color_group_color\";i:3;s:27:\"ekit_pricing_btn_text_color\";i:1;}s:34:\"ekit_pricing_section_content_style\";a:3:{s:32:\"ekit_pricing_content_hover_color\";i:3;s:26:\"ekit_pricing_divider_color\";i:3;s:31:\"ekit_pricing_content_text_color\";i:3;}s:31:\"ekit_pricing_section_style_icon\";a:2:{s:31:\"ekit_pricing_icon_primary_color\";i:3;s:23:\"ekit_pricing_icon_space\";i:3;}s:18:\"ekit_pricing_order\";a:2:{s:25:\"ekit_pricing_order_enable\";i:1;s:25:\"ekit_pricing_order_header\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}s:15:\"_section_border\";a:11:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;s:20:\"_border_hover_border\";i:2;s:19:\"_border_hover_width\";i:2;s:19:\"_border_hover_color\";i:2;s:33:\"_box_shadow_hover_box_shadow_type\";i:2;s:28:\"_box_shadow_hover_box_shadow\";i:2;s:24:\"_border_hover_transition\";i:2;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:19:\"premium-img-gallery\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:23:\"premium_gallery_general\";a:3:{s:31:\"premium_gallery_img_size_select\";i:1;s:14:\"thumbnail_size\";i:1;s:29:\"premium_gallery_column_number\";i:1;}s:20:\"premium_gallery_cats\";a:2:{s:22:\"premium_gallery_filter\";i:1;s:28:\"premium_gallery_cats_content\";i:1;}s:23:\"premium_gallery_content\";a:1:{s:27:\"premium_gallery_img_content\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:1:{s:11:\"form_fields\";i:1;}s:13:\"section_email\";a:1:{s:8:\"email_to\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_field_style\";a:1:{s:22:\"field_background_color\";i:1;}}}}}s:7:\"archive\";a:6:{s:19:\"elementskit-heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;s:22:\"ekit_heading_title_tag\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:4:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:2;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:7:{s:32:\"ekit_heading_focused_title_color\";i:2;s:33:\"ekit_heading_use_focused_title_bg\";i:1;s:38:\"ekit_heading_focused_title_color_hover\";i:1;s:48:\"ekit_heading_focused_title_typography_typography\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:40:\"ekit_heading_title_text_decoration_color\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_color\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:7:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;s:28:\"ekit_heading_sub_title_color\";i:2;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;s:6:\"sticky\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:13:\"archive-posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:30:\"archive_classic_meta_separator\";i:1;s:33:\"archive_cards_thumbnail_size_size\";i:1;s:24:\"archive_cards_item_ratio\";i:1;s:28:\"archive_cards_read_more_text\";i:1;s:25:\"archive_cards_show_avatar\";i:1;s:28:\"archive_cards_show_read_more\";i:1;s:28:\"archive_cards_excerpt_length\";i:1;s:23:\"archive_cards_meta_data\";i:1;s:23:\"archive_classic_masonry\";i:1;}s:16:\"section_advanced\";a:1:{s:21:\"nothing_found_message\";i:1;}}s:5:\"style\";a:7:{s:33:\"archive_cards_section_design_card\";a:5:{s:27:\"archive_cards_card_bg_color\";i:1;s:32:\"archive_cards_card_border_radius\";i:1;s:31:\"archive_cards_meta_border_color\";i:1;s:26:\"archive_cards_card_padding\";i:1;s:26:\"archive_cards_hover_effect\";i:1;}s:34:\"archive_cards_section_design_image\";a:7:{s:28:\"archive_cards_badge_bg_color\";i:1;s:25:\"archive_cards_badge_color\";i:1;s:27:\"archive_cards_image_spacing\";i:1;s:28:\"archive_cards_badge_position\";i:1;s:26:\"archive_cards_badge_radius\";i:1;s:24:\"archive_cards_badge_size\";i:1;s:26:\"archive_cards_badge_margin\";i:1;}s:36:\"archive_cards_section_design_content\";a:6:{s:25:\"archive_cards_title_color\";i:1;s:27:\"archive_cards_excerpt_color\";i:1;s:29:\"archive_cards_read_more_color\";i:1;s:27:\"archive_cards_title_spacing\";i:1;s:29:\"archive_cards_excerpt_spacing\";i:1;s:31:\"archive_cards_read_more_spacing\";i:1;}s:24:\"section_pagination_style\";a:9:{s:16:\"pagination_color\";i:1;s:22:\"pagination_hover_color\";i:1;s:23:\"pagination_active_color\";i:1;s:18:\"pagination_spacing\";i:1;s:32:\"pagination_typography_typography\";i:1;s:33:\"pagination_typography_font_family\";i:1;s:31:\"pagination_typography_font_size\";i:1;s:33:\"pagination_typography_font_weight\";i:1;s:33:\"pagination_typography_line_height\";i:1;}s:27:\"section_nothing_found_style\";a:6:{s:19:\"nothing_found_color\";i:1;s:35:\"nothing_found_typography_typography\";i:1;s:36:\"nothing_found_typography_font_family\";i:1;s:34:\"nothing_found_typography_font_size\";i:1;s:36:\"nothing_found_typography_font_weight\";i:1;s:36:\"nothing_found_typography_line_height\";i:1;}s:35:\"archive_cards_section_design_layout\";a:2:{s:23:\"archive_cards_alignment\";i:1;s:21:\"archive_cards_row_gap\";i:1;}s:13:\"section_style\";a:2:{s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:2;s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:8:{s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;s:29:\"background_overlay_background\";i:2;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:25:\"elementskit-contact-form7\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"link\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:15:\"hover_animation\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;}s:17:\"section_style_box\";a:4:{s:10:\"icon_space\";i:3;s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;}}}}}s:6:\"single\";a:10:{s:19:\"elementskit-heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:22:\"ekit_heading_title_tag\";i:2;s:17:\"show_title_border\";i:2;s:16:\"title_float_left\";i:2;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:2;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:2;s:41:\"ekit_heading_title_typography_font_family\";i:2;s:39:\"ekit_heading_title_typography_font_size\";i:2;s:41:\"ekit_heading_title_typography_font_weight\";i:2;s:41:\"ekit_heading_title_typography_line_height\";i:2;}s:36:\"ekit_heading_section_sub_title_style\";a:1:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}s:40:\"ekit_heading_section_focused_title_style\";a:5:{s:49:\"ekit_heading_focused_title_typography_font_family\";i:2;s:47:\"ekit_heading_focused_title_typography_font_size\";i:2;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:2;s:49:\"ekit_heading_focused_title_typography_line_height\";i:2;s:48:\"ekit_heading_focused_title_typography_typography\";i:2;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:1;s:16:\"content_position\";i:1;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:6:\"_title\";i:2;s:13:\"content_width\";i:1;}}}}s:25:\"theme-post-featured-image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:1;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:0:{}}s:13:\"share-buttons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:23:\"section_buttons_content\";a:6:{s:13:\"share_buttons\";i:1;s:4:\"view\";i:1;s:4:\"skin\";i:1;s:9:\"alignment\";i:1;s:16:\"alignment_mobile\";i:1;s:5:\"shape\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_buttons_style\";a:9:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"button_size\";i:1;s:9:\"icon_size\";i:1;s:12:\"color_source\";i:1;s:13:\"primary_color\";i:1;s:15:\"secondary_color\";i:1;s:19:\"primary_color_hover\";i:1;s:21:\"secondary_color_hover\";i:1;}}}}s:18:\"theme-post-content\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:15:\"post-navigation\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:11:\"arrow_style\";a:2:{s:10:\"arrow_size\";i:1;s:13:\"arrow_padding\";i:1;}s:21:\"borders_section_style\";a:2:{s:13:\"borders_width\";i:1;s:15:\"borders_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}s:7:\"content\";a:1:{s:31:\"section_post_navigation_content\";a:1:{s:5:\"arrow\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:6:{s:27:\"motion_fx_translateY_effect\";i:1;s:26:\"motion_fx_translateY_speed\";i:1;s:34:\"motion_fx_translateY_affectedRange\";i:1;s:24:\"motion_fx_opacity_effect\";i:1;s:23:\"motion_fx_opacity_range\";i:1;s:17:\"motion_fx_devices\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:1;s:23:\"typography_word_spacing\";i:1;}}}}s:5:\"posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:15:\"classic_columns\";i:1;s:22:\"classic_posts_per_page\";i:1;s:13:\"cards_columns\";i:1;s:20:\"cards_posts_per_page\";i:1;s:16:\"cards_item_ratio\";i:1;s:15:\"cards_meta_data\";i:1;s:20:\"cards_show_read_more\";i:1;s:17:\"cards_show_avatar\";i:1;s:25:\"cards_thumbnail_size_size\";i:1;}s:13:\"section_query\";a:1:{s:13:\"posts_include\";i:1;}}s:5:\"style\";a:6:{s:24:\"section_pagination_style\";a:3:{s:16:\"pagination_color\";i:1;s:22:\"pagination_hover_color\";i:1;s:23:\"pagination_active_color\";i:1;}s:29:\"classic_section_design_layout\";a:1:{s:17:\"classic_alignment\";i:1;}s:27:\"cards_section_design_layout\";a:2:{s:13:\"cards_row_gap\";i:1;s:15:\"cards_alignment\";i:1;}s:25:\"cards_section_design_card\";a:2:{s:24:\"cards_card_border_radius\";i:1;s:18:\"cards_card_padding\";i:1;}s:26:\"cards_section_design_image\";a:5:{s:19:\"cards_image_spacing\";i:1;s:20:\"cards_badge_position\";i:1;s:18:\"cards_badge_radius\";i:1;s:16:\"cards_badge_size\";i:1;s:18:\"cards_badge_margin\";i:1;}s:28:\"cards_section_design_content\";a:2:{s:21:\"cards_excerpt_spacing\";i:1;s:23:\"cards_read_more_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}s:5:\"popup\";a:4:{s:4:\"icon\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:1;s:13:\"custom_height\";i:1;s:15:\"column_position\";i:1;s:6:\"_title\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:19:\"background_bg_width\";i:1;s:38:\"background_motion_fx_mouseTrack_effect\";i:1;s:37:\"background_motion_fx_mouseTrack_speed\";i:1;s:36:\"background_motion_fx_motion_fx_mouse\";i:1;s:41:\"background_motion_fx_mouseTrack_direction\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}s:9:\"error-404\";a:4:{s:7:\"heading\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:5:\"align\";i:3;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;s:10:\"icon_align\";i:1;s:11:\"icon_indent\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:13:\"border_radius\";i:1;s:33:\"button_box_shadow_box_shadow_type\";i:1;s:28:\"button_box_shadow_box_shadow\";i:1;s:12:\"align_mobile\";i:1;s:5:\"align\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:16:\"background_image\";i:1;s:21:\"background_background\";i:2;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:8:{s:13:\"content_width\";i:1;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:16:\"content_position\";i:1;s:8:\"overflow\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:6:\"_title\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:2;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:37:\"background_motion_fx_mouseTrack_speed\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:24:\"background_gradient_type\";i:1;s:28:\"background_gradient_position\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}}","no");
INSERT INTO 7ja_options VALUES("105096","_transient_timeout_jetpack_plugin_api_action_links_refresh","1714581991","no");
INSERT INTO 7ja_options VALUES("105097","_transient_jetpack_plugin_api_action_links_refresh","1714495591","no");
INSERT INTO 7ja_options VALUES("105104","_transient_timeout_jetpack_is_single_user","1714538791","no");
INSERT INTO 7ja_options VALUES("105105","_transient_jetpack_is_single_user","2","no");
INSERT INTO 7ja_options VALUES("105109","elementor_1_elementor_updater_batch_c313bc5e0936a5d79eda90ad55b1","a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}","no");
INSERT INTO 7ja_options VALUES("105117","_transient_timeout_elementor_remote_info_api_data_3.21.4","1714538795","no");
INSERT INTO 7ja_options VALUES("105118","_transient_elementor_remote_info_api_data_3.21.4","a:4:{s:9:\"timestamp\";s:10:\"1714494780\";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:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s: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:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s: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:5;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:6;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:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s: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:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;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:24;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:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;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:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;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:71;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:72;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:73;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:74;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.5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}","no");
INSERT INTO 7ja_options VALUES("105249","_elementor_global_css","a:7:{s:4:\"time\";i:1714503799;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:\"\";}","yes");
INSERT INTO 7ja_options VALUES("105254","_elementor_assets_data","a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:25:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:8:\"nav-menu\";a:2:{s:7:\"content\";s:129:\"<link rel=\"stylesheet\" href=\"https://latitude39creative.com/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css\">\";s:7:\"version\";s:6:\"3.21.2\";}s:19:\"elementskit-heading\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:4:\"icon\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:1379:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:7:\"divider\";a:2:{s:7:\"content\";s:4311:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:20:\"elementskit-icon-box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:10:\"pp-counter\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:17:\"elementskit-video\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:18:\"pp-image-accordion\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:16:\"pp-logo-carousel\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:23:\"elementskit-testimonial\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:18:\"premium-addon-blog\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:25:\"elementskit-contact-form7\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:125:\"<link rel=\"stylesheet\" href=\"https://latitude39creative.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">\";s:7:\"version\";s:6:\"3.21.4\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:19:\"elementskit-pricing\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:9:\"shortcode\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:19:\"premium-img-gallery\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:5:\"forms\";a:2:{s:7:\"content\";s:6246:\"<style>/*! elementor-pro - v3.21.0 - 24-04-2024 */\n.elementor-button.elementor-hidden,.elementor-hidden{display:none}.e-form__step{width:100%}.e-form__step:not(.elementor-hidden){display:flex;flex-wrap:wrap}.e-form__buttons{flex-wrap:wrap}.e-form__buttons,.e-form__buttons__wrapper{display:flex}.e-form__indicators{display:flex;justify-content:space-between;align-items:center;flex-wrap:nowrap;font-size:13px;margin-bottom:var(--e-form-steps-indicators-spacing)}.e-form__indicators__indicator{display:flex;flex-direction:column;align-items:center;justify-content:center;flex-basis:0;padding:0 var(--e-form-steps-divider-gap)}.e-form__indicators__indicator__progress{width:100%;position:relative;background-color:var(--e-form-steps-indicator-progress-background-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);overflow:hidden}.e-form__indicators__indicator__progress__meter{width:var(--e-form-steps-indicator-progress-meter-width,0);height:var(--e-form-steps-indicator-progress-height);line-height:var(--e-form-steps-indicator-progress-height);padding-right:15px;border-radius:var(--e-form-steps-indicator-progress-border-radius);background-color:var(--e-form-steps-indicator-progress-color);color:var(--e-form-steps-indicator-progress-meter-color);text-align:right;transition:width .1s linear}.e-form__indicators__indicator:first-child{padding-left:0}.e-form__indicators__indicator:last-child{padding-right:0}.e-form__indicators__indicator--state-inactive{color:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-inactive [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-inactive-secondary-color,#fff)}.e-form__indicators__indicator--state-inactive object,.e-form__indicators__indicator--state-inactive svg{fill:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-active{color:var(--e-form-steps-indicator-active-primary-color,#39b54a);border-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active object,.e-form__indicators__indicator--state-active svg{fill:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed{color:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator--state-completed [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator__label{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator--shape-none{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a);background-color:initial}.e-form__indicators__indicator--state-completed object,.e-form__indicators__indicator--state-completed svg{fill:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator__icon{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);font-size:var(--e-form-steps-indicator-icon-size);border-width:1px;border-style:solid;display:flex;justify-content:center;align-items:center;overflow:hidden;margin-bottom:10px}.e-form__indicators__indicator__icon img,.e-form__indicators__indicator__icon object,.e-form__indicators__indicator__icon svg{width:var(--e-form-steps-indicator-icon-size);height:auto}.e-form__indicators__indicator__icon .e-font-icon-svg{height:1em}.e-form__indicators__indicator__number{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);border-width:1px;border-style:solid;display:flex;justify-content:center;align-items:center;margin-bottom:10px}.e-form__indicators__indicator--shape-circle{border-radius:50%}.e-form__indicators__indicator--shape-square{border-radius:0}.e-form__indicators__indicator--shape-rounded{border-radius:5px}.e-form__indicators__indicator--shape-none{border:0}.e-form__indicators__indicator__label{text-align:center}.e-form__indicators__indicator__separator{width:100%;height:var(--e-form-steps-divider-width);background-color:#babfc5}.e-form__indicators--type-icon,.e-form__indicators--type-icon_text,.e-form__indicators--type-number,.e-form__indicators--type-number_text{align-items:flex-start}.e-form__indicators--type-icon .e-form__indicators__indicator__separator,.e-form__indicators--type-icon_text .e-form__indicators__indicator__separator,.e-form__indicators--type-number .e-form__indicators__indicator__separator,.e-form__indicators--type-number_text .e-form__indicators__indicator__separator{margin-top:calc(var(--e-form-steps-indicator-padding, 30px) / 2 - var(--e-form-steps-divider-width, 1px) / 2)}.elementor-field-type-hidden{display:none}.elementor-field-type-html{display:inline-block}.elementor-field-type-tel input{direction:inherit}.elementor-login .elementor-lost-password,.elementor-login .elementor-remember-me{font-size:.85em}.elementor-field-type-recaptcha_v3 .elementor-field-label{display:none}.elementor-field-type-recaptcha_v3 .grecaptcha-badge{z-index:1}.elementor-button .elementor-form-spinner{order:3}.elementor-form .elementor-button>span{display:flex;justify-content:center;align-items:center}.elementor-form .elementor-button .elementor-button-text{white-space:normal;flex-grow:0}.elementor-form .elementor-button svg{height:auto}.elementor-form .elementor-button .e-font-icon-svg{height:1em}.elementor-select-wrapper .select-caret-down-wrapper{position:absolute;top:50%;transform:translateY(-50%);inset-inline-end:10px;pointer-events:none;font-size:11px}.elementor-select-wrapper .select-caret-down-wrapper svg{display:unset;width:1em;aspect-ratio:unset;fill:currentColor}.elementor-select-wrapper .select-caret-down-wrapper i{font-size:19px;line-height:2}.elementor-select-wrapper.remove-before:before{content:\"\"!important}</style>\";s:7:\"version\";s:6:\"3.21.1\";}s:5:\"posts\";a:2:{s:7:\"content\";s:126:\"<link rel=\"stylesheet\" href=\"https://latitude39creative.com/wp-content/plugins/elementor-pro/assets/css/widget-posts.min.css\">\";s:7:\"version\";s:6:\"3.21.1\";}s:13:\"archive-posts\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.1\";}}}}","yes");
INSERT INTO 7ja_options VALUES("105318","_transient_timeout_wp_plugin_update_bluehost-wordpress-plugin","1714534906","no");
INSERT INTO 7ja_options VALUES("105319","_transient_wp_plugin_update_bluehost-wordpress-plugin","O:8:\"stdClass\":22:{s:6:\"author\";s:43:\"<a href=\"https://bluehost.com\">Bluehost</a>\";s:11:\"author_name\";s:8:\"Bluehost\";s:10:\"author_uri\";s:20:\"https://bluehost.com\";s:11:\"description\";s:136:\"WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.\";s:13:\"download_link\";s:107:\"https://github.com/bluehost/bluehost-wordpress-plugin/releases/download/3.9.4/bluehost-wordpress-plugin.zip\";s:8:\"homepage\";s:20:\"https://bluehost.com\";s:2:\"id\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:12:\"last_updated\";s:20:\"2024-04-18T21:04:15Z\";s:4:\"name\";s:19:\"The Bluehost Plugin\";s:6:\"plugin\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.1\";s:8:\"sections\";a:1:{s:11:\"description\";s:136:\"WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.\";}s:17:\"short_description\";s:136:\"WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.\";s:4:\"slug\";s:25:\"bluehost-wordpress-plugin\";s:6:\"tested\";s:5:\"6.5.2\";s:7:\"version\";s:5:\"3.9.4\";s:7:\"banners\";a:4:{s:2:\"2x\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";s:2:\"1x\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";s:4:\"high\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";s:3:\"low\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";}s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-icon.svg\";s:2:\"1x\";s:68:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-icon.svg\";}s:11:\"new_version\";s:5:\"3.9.4\";s:7:\"package\";s:107:\"https://github.com/bluehost/bluehost-wordpress-plugin/releases/download/3.9.4/bluehost-wordpress-plugin.zip\";s:3:\"url\";s:20:\"https://bluehost.com\";}","no");
INSERT INTO 7ja_options VALUES("105336","_transient_timeout_nfd_site_capabilities","1714533125","no");
INSERT INTO 7ja_options VALUES("105337","_transient_nfd_site_capabilities","a:9:{s:11:\"canAccessAI\";b:1;s:18:\"canAccessGlobalCTB\";b:1;s:19:\"canAccessHelpCenter\";b:1;s:11:\"hasEcomdash\";b:0;s:15:\"hasYithExtended\";b:0;s:11:\"isEcommerce\";b:0;s:8:\"isJarvis\";b:1;s:14:\"canMigrateSite\";b:1;s:12:\"hasAISiteGen\";b:0;}","no");
INSERT INTO 7ja_options VALUES("105370","_transient_timeout_global_styles_svg_filters_hello-elementor","1714523194","no");
INSERT INTO 7ja_options VALUES("105371","_transient_global_styles_svg_filters_hello-elementor","<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>","no");
INSERT INTO 7ja_options VALUES("105372","_site_transient_timeout_theme_roots","1714524936","no");
INSERT INTO 7ja_options VALUES("105373","_site_transient_theme_roots","a:6:{s:15:\"hello-elementor\";s:7:\"/themes\";s:7:\"sinatra\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}","no");
INSERT INTO 7ja_options VALUES("105375","_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.5.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.2\";s:7:\"version\";s:5:\"6.5.2\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1714523145;s:15:\"version_checked\";s:5:\"6.5.2\";s:12:\"translations\";a:0:{}}","no");
INSERT INTO 7ja_options VALUES("105378","_transient_timeout_jetpack_sync_constants_await","1714526745","no");
INSERT INTO 7ja_options VALUES("105379","_transient_jetpack_sync_constants_await","1714523145.2265","no");
INSERT INTO 7ja_options VALUES("105380","_site_transient_update_themes","O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1714523145;s:7:\"checked\";a:6:{s:15:\"hello-elementor\";s:5:\"3.0.1\";s:7:\"sinatra\";s:3:\"1.3\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:15:\"twentytwentyone\";s:3:\"2.2\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:6:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.0.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.0.1.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.3\";}s:7:\"sinatra\";a:6:{s:5:\"theme\";s:7:\"sinatra\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:37:\"https://wordpress.org/themes/sinatra/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/sinatra.1.3.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.2.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}","no");
INSERT INTO 7ja_options VALUES("105381","_transient_timeout_jetpack_sync_last_checked_queue_state_sync","1714523175","no");
INSERT INTO 7ja_options VALUES("105382","_transient_jetpack_sync_last_checked_queue_state_sync","a:2:{i:0;i:0;i:1;d:0;}","no");
INSERT INTO 7ja_options VALUES("105383","_transient_timeout_jetpack_sync_callables_await","1714523205","no");
INSERT INTO 7ja_options VALUES("105384","_transient_jetpack_sync_callables_await","1714523145.3006","no");
INSERT INTO 7ja_options VALUES("105385","elementor_pro_remote_info_api_data_3.21.1","a:2:{s:7:\"timeout\";i:1714566346;s:5:\"value\";s:218317:\"{\"stable_version\":\"3.21.2\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:203750:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.21.2\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzE0NTIzMTQ1LCJleHAiOjE3MTQ2MDk1NDV9.zIRY1Wzon6o6ScWhwS0JJKe4nnEIrUddnaF4Kmkw8IM\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzE0NTIzMTQ1LCJleHAiOjE3MTQ2MDk1NDV9.zIRY1Wzon6o6ScWhwS0JJKe4nnEIrUddnaF4Kmkw8IM\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTQ1MjMxNDUsImV4cCI6MTcxNDYwOTU0NX0.Ph4K7y1Nl1WcSSvZap7X4NJmlE6KoAbn-r415kOujO0\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTQ1MjMxNDUsImV4cCI6MTcxNDYwOTU0NX0.Ph4K7y1Nl1WcSSvZap7X4NJmlE6KoAbn-r415kOujO0\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}","no");
INSERT INTO 7ja_options VALUES("105386","_site_transient_update_plugins","O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1714523146;s:8:\"response\";a:1:{s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.21.2\";s:12:\"last_updated\";s:19:\"2022-05-10 14:03:37\";s:11:\"new_version\";s:6:\"3.21.2\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.5.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:365:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzE0NTIzMTQ1LCJleHAiOjE3MTQ2MDk1NDV9.zIRY1Wzon6o6ScWhwS0JJKe4nnEIrUddnaF4Kmkw8IM/package_download\";s:13:\"download_link\";s:365:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzE0NTIzMTQ1LCJleHAiOjE3MTQ2MDk1NDV9.zIRY1Wzon6o6ScWhwS0JJKe4nnEIrUddnaF4Kmkw8IM/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.5.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:342:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTQ1MjMxNDUsImV4cCI6MTcxNDYwOTU0NX0.Ph4K7y1Nl1WcSSvZap7X4NJmlE6KoAbn-r415kOujO0/previous_download\";s:13:\"download_link\";s:342:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiNjVlNDUzZjFhNTYyNjc4YjBhMmUzYzY0YTIzMjliNzUiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL2xhdGl0dWRlMzljcmVhdGl2ZS5jb20iLCJpYXQiOjE3MTQ1MjMxNDUsImV4cCI6MTcxNDYwOTU0NX0.Ph4K7y1Nl1WcSSvZap7X4NJmlE6KoAbn-r415kOujO0/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:12:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.9.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.9.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"w.org/plugins/creative-mail-by-constant-contact\";s:4:\"slug\";s:33:\"creative-mail-by-constant-contact\";s:6:\"plugin\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/creative-mail-by-constant-contact/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/creative-mail-by-constant-contact.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:78:\"https://ps.w.org/creative-mail-by-constant-contact/assets/icon.svg?rev=2341439\";s:3:\"svg\";s:78:\"https://ps.w.org/creative-mail-by-constant-contact/assets/icon.svg?rev=2341439\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:89:\"https://ps.w.org/creative-mail-by-constant-contact/assets/banner-1544x500.png?rev=2821536\";s:2:\"1x\";s:88:\"https://ps.w.org/creative-mail-by-constant-contact/assets/banner-772x250.png?rev=2821536\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{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.21.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":10:{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.1.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.1.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.png?rev=2118488\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.png?rev=2118488\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:35:\"envato-elements/envato-elements.php\";O:8:\"stdClass\":10:{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.13\";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.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/envato-elements/assets/icon-256x256.png?rev=2065415\";s:2:\"1x\";s:68:\"https://ps.w.org/envato-elements/assets/icon-128x128.png?rev=2065415\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/envato-elements/assets/banner-1544x500.png?rev=2303035\";s:2:\"1x\";s:70:\"https://ps.w.org/envato-elements/assets/banner-772x250.png?rev=2303035\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:6:\"13.3.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/jetpack.13.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:42:\"w.org/plugins/powerpack-lite-for-elementor\";s:4:\"slug\";s:28:\"powerpack-lite-for-elementor\";s:6:\"plugin\";s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";s:11:\"new_version\";s:6:\"2.7.19\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/powerpack-lite-for-elementor/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/powerpack-lite-for-elementor.2.7.19.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/powerpack-lite-for-elementor/assets/icon-256x256.png?rev=2764331\";s:2:\"1x\";s:81:\"https://ps.w.org/powerpack-lite-for-elementor/assets/icon-128x128.png?rev=2764331\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:83:\"https://ps.w.org/powerpack-lite-for-elementor/assets/banner-772x250.jpg?rev=2649932\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";O:8:\"stdClass\":10:{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.10.31\";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.10.31.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.jpg?rev=2943053\";s:2:\"1x\";s:83:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-772x250.jpg?rev=2943053\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.8.8.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.8.8.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=2574198\";s:3:\"svg\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=2574198\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=2602491\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=2602491\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500-rtl.png?rev=2602491\";s:2:\"1x\";s:71:\"https://ps.w.org/wpforms-lite/assets/banner-772x250-rtl.png?rev=2602491\";}s:8:\"requires\";s:3:\"5.5\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"22.6\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.22.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.3\";}}s:7:\"checked\";a:15:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.9.3\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:5:\"1.6.7\";s:23:\"elementor/elementor.php\";s:6:\"3.21.4\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.21.2\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"3.1.3\";s:35:\"envato-elements/envato-elements.php\";s:6:\"2.0.13\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:6:\"13.3.1\";s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";s:6:\"2.7.19\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:7:\"4.10.31\";s:55:\"premium-addons-pro/premium-addons-pro-for-elementor.php\";s:6:\"2.9.10\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:5:\"3.9.4\";s:24:\"wpforms-lite/wpforms.php\";s:7:\"1.8.8.3\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"22.6\";}}","no");
INSERT INTO 7ja_options VALUES("105387","nfd_module_onboarding_compatibility_results","a:2:{s:6:\"status\";s:10:\"compatible\";s:9:\"timestamp\";s:19:\"2024-05-01 00:25:46\";}","yes");
INSERT INTO 7ja_options VALUES("105388","_transient_timeout_jetpack_sync_dedicated_sync_spawn_check","1714526746","no");
INSERT INTO 7ja_options VALUES("105389","_transient_jetpack_sync_dedicated_sync_spawn_check","DEDICATED SYNC OK","no");
INSERT INTO 7ja_options VALUES("105407","_transient_timeout_jetpack_update_remote_package_last_query","1714523951","no");
INSERT INTO 7ja_options VALUES("105408","_transient_jetpack_update_remote_package_last_query","1714523891","no");
INSERT INTO 7ja_options VALUES("105409","active_plugins_bk","a:12:{i:0;s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";i:3;s:31:\"elementor-pro/elementor-pro.php\";i:4;s:23:\"elementor/elementor.php\";i:5;s:37:\"elementskit-lite/elementskit-lite.php\";i:6;s:35:\"envato-elements/envato-elements.php\";i:7;s:19:\"jetpack/jetpack.php\";i:8;s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";i:9;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:10;s:55:\"premium-addons-pro/premium-addons-pro-for-elementor.php\";i:11;s:24:\"wordpress-seo/wp-seo.php\";}","yes");



DROP TABLE IF EXISTS 7ja_postmeta;

CREATE TABLE `7ja_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=9611 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_postmeta VALUES("2","3","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("3","6","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4","6","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("7","9","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("8","9","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("9","9","_elementor_version","3.10.1");
INSERT INTO 7ja_postmeta VALUES("10","9","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("11","10","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("12","10","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("13","10","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("14","10","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("15","9","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("16","9","_elementor_page_settings","a:20:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:13:\"custom_colors\";a:6:{i:0;a:3:{s:3:\"_id\";s:7:\"f898f31\";s:5:\"title\";s:13:\"White Element\";s:5:\"color\";s:7:\"#FFFEFE\";}i:1;a:3:{s:3:\"_id\";s:7:\"0d046a4\";s:5:\"title\";s:17:\"Dark Grey Element\";s:5:\"color\";s:7:\"#E9E9E9\";}i:2;a:3:{s:3:\"_id\";s:7:\"c6c574f\";s:5:\"title\";s:13:\"Light Grey BG\";s:5:\"color\";s:7:\"#F9F9F9\";}i:3;a:3:{s:3:\"_id\";s:7:\"7ad78f4\";s:5:\"title\";s:16:\"White Overlay BG\";s:5:\"color\";s:9:\"#FFFFFFE6\";}i:4;a:3:{s:3:\"_id\";s:7:\"8630d9f\";s:5:\"title\";s:17:\"Full Transparency\";s:5:\"color\";s:9:\"#7E222200\";}i:5;a:3:{s:3:\"_id\";s:7:\"b500f0a\";s:5:\"title\";s:8:\"White BG\";s:5:\"color\";s:7:\"#FFFFFF\";}}s:17:\"system_typography\";a:4:{i:0;a:10:{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:12:\"Varela Round\";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:45;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;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:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.4\";s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:10:\"Montserrat\";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:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;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:\"#26B6A3\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#FFFFFF\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#F2295B\";}}s:17:\"custom_typography\";a:8:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:3:\"_id\";s:7:\"6ed476c\";s:5:\"title\";s:10:\"Subheading\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"9525bd0\";s:5:\"title\";s:22:\"Testimonials & Excerpt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"cdaaf6a\";s:5:\"title\";s:13:\"Medium Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:3;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"0009af8\";s:5:\"title\";s:12:\"Small Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:3:\"_id\";s:7:\"ef2c50b\";s:5:\"title\";s:10:\"Menu Links\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"f8a9e51\";s:5:\"title\";s:11:\"Large Title\";}i:6;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"70\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ccc280a\";s:5:\"title\";s:16:\"Popup Main Title\";}i:7;a:10:{s:3:\"_id\";s:7:\"2c11d45\";s:5:\"title\";s:15:\"Hero Main Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"45\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1400\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:2:{s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=f898f31\";s:21:\"body_background_color\";s:25:\"globals/colors?id=b500f0a\";}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}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\";s:1:\"1\";}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}s:26:\"body_background_background\";s:7:\"classic\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:25:\"mobile_browser_background\";s:7:\"#FFFFFF\";s:18:\"lightbox_title_src\";s:0:\"\";s:9:\"site_name\";s:20:\"Latitude 39 Creative\";s:16:\"site_description\";s:30:\"Creation Starts At Latitude 39\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}");
INSERT INTO 7ja_postmeta VALUES("17","11","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("18","11","_elementor_template_type","error-404");
INSERT INTO 7ja_postmeta VALUES("19","11","_elementor_version","3.10.1");
INSERT INTO 7ja_postmeta VALUES("20","11","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("37","16","_wp_attached_file","2022/11/404.png");
INSERT INTO 7ja_postmeta VALUES("38","16","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("39","16","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1921;s:6:\"height\";i:694;s:4:\"file\";s:15:\"2022/11/404.png\";s:8:\"filesize\";i:16245;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"404-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2403;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"404-1024x370.png\";s:5:\"width\";i:1024;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10192;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"404-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"404-768x277.png\";s:5:\"width\";i:768;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7183;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:16:\"404-1536x555.png\";s:5:\"width\";i:1536;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17715;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("40","16","_elementor_source_image_hash","766e5b8cdd0da9054ac887ad093029b08fb82400");
INSERT INTO 7ja_postmeta VALUES("41","11","_elementor_data","[{\"id\":\"54187df1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":394,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"404\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#26B6A3E6\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top center\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"2b853ab5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6c656575\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"700\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"9\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"overflow\":\"hidden\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"66f8c7e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\",\"id\":390,\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"background_background\":\"classic\",\"background_xpos\":{\"unit\":\"px\",\"size\":-800,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-422,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4f54a80b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ooops.\",\"align\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ccc280a\",\"title_color\":\"globals\\/colors?id=f898f31\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"123e713d\",\"elType\":\"widget\",\"settings\":{\"title\":\" I Think You Got Lost.\",\"align\":\"center\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=6ed476c\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77b831d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Page You Were Looking For Couldn\'t Be Found.\",\"align\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1536f17\",\"elType\":\"widget\",\"settings\":{\"text\":\"back to home page\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"align_mobile\":\"center\",\"align\":\"center\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7a41abc\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"button_text_color\":\"globals\\/colors?id=f898f31\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=f898f31\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("42","17","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("43","17","_elementor_template_type","error-404");
INSERT INTO 7ja_postmeta VALUES("44","17","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("45","17","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("46","17","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("47","11","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("48","11","_elementor_conditions","a:1:{i:0;s:29:\"include/singular/not_found404\";}");
INSERT INTO 7ja_postmeta VALUES("49","11","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("50","18","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("51","18","_elementor_template_type","popup");
INSERT INTO 7ja_postmeta VALUES("52","18","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("53","18","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("58","20","_wp_attached_file","2022/11/bubble_bg_popup.png");
INSERT INTO 7ja_postmeta VALUES("59","20","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("60","20","_wp_attachment_metadata","a:6:{s:5:\"width\";i:196;s:6:\"height\";i:481;s:4:\"file\";s:27:\"2022/11/bubble_bg_popup.png\";s:8:\"filesize\";i:4117;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"bubble_bg_popup-122x300.png\";s:5:\"width\";i:122;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3835;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"bubble_bg_popup-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2127;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("61","20","_elementor_source_image_hash","ac14f31631a178d4ee0293759dcfd2f2e4e43131");
INSERT INTO 7ja_postmeta VALUES("70","18","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("71","18","_elementor_page_settings","a:18:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"801\";s:5:\"sizes\";a:0:{}}s:11:\"height_type\";s:6:\"custom\";s:6:\"height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"700\";s:5:\"sizes\";a:0:{}}s:18:\"entrance_animation\";s:6:\"zoomIn\";s:14:\"exit_animation\";s:14:\"rotateInUpLeft\";s:27:\"entrance_animation_duration\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"1\";s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:13:\"rgba(0,0,0,0)\";s:26:\"box_shadow_box_shadow_type\";s:0:\"\";s:26:\"overlay_background_color_b\";s:7:\"#2bf4ff\";s:21:\"close_button_vertical\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:28:\"close_button_vertical_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"21.5\";s:5:\"sizes\";a:0:{}}s:23:\"close_button_horizontal\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"14.5\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:3:{s:24:\"overlay_background_color\";s:25:\"globals/colors?id=7ad78f4\";s:18:\"close_button_color\";s:27:\"globals/colors?id=secondary\";s:24:\"close_button_hover_color\";s:24:\"globals/colors?id=accent\";}s:28:\"close_button_vertical_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"95\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"55\";s:5:\"sizes\";a:0:{}}s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("72","18","_elementor_data","[{\"id\":\"efa024a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":968,\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":21,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Bg-popUp.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_position_mobile\":\"initial\",\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":\"95\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_direction\":\"negative\",\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_title\":\"Popup\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"730c4500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"356f575\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eaf7c37\\\" name=\\\"popup\\\" settings=\\\"%7B%22action%22%3A%22close%22%2C%22do_not_show_again%22%3A%22yes%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"78602e9\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"<!-- Google Calendar Appointment Scheduling begin -->\\n<iframe src=\\\"https:\\/\\/calendar.google.com\\/calendar\\/appointments\\/schedules\\/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\\\" style=\\\"border: 0\\\" width=\\\"100%\\\" height=\\\"600\\\" frameborder=\\\"0\\\"><\\/iframe>\\n<!-- end Google Calendar Appointment Scheduling -->\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=f898f31\"}},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("80","18","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("81","18","_elementor_popup_display_settings","a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}");
INSERT INTO 7ja_postmeta VALUES("82","18","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("83","24","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("84","24","_elementor_template_type","single");
INSERT INTO 7ja_postmeta VALUES("85","24","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("86","24","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("87","25","_wp_attached_file","2022/11/Post-BG.png");
INSERT INTO 7ja_postmeta VALUES("88","25","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("89","25","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2022/11/Post-BG.png\";s:8:\"filesize\";i:32954;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Post-BG-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1919;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"Post-BG-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Post-BG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Post-BG-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5505;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"Post-BG-1536x400.png\";s:5:\"width\";i:1536;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11998;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("90","25","_elementor_source_image_hash","f9b50aa9197205916bf0cfa9f44207a5d9a14ce6");
INSERT INTO 7ja_postmeta VALUES("95","27","_wp_attached_file","2022/11/BG-Post-Sub.png");
INSERT INTO 7ja_postmeta VALUES("96","27","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("97","27","_wp_attachment_metadata","a:6:{s:5:\"width\";i:750;s:6:\"height\";i:304;s:4:\"file\";s:23:\"2022/11/BG-Post-Sub.png\";s:8:\"filesize\";i:9281;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"BG-Post-Sub-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1142;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"BG-Post-Sub-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:459;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("98","27","_elementor_source_image_hash","586f43a159cdf9bdd88e9c1d16a80a46a8e8a91a");
INSERT INTO 7ja_postmeta VALUES("103","29","_wp_attached_file","2022/11/CTA-Shapes.png");
INSERT INTO 7ja_postmeta VALUES("104","29","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("105","29","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1921;s:6:\"height\";i:519;s:4:\"file\";s:22:\"2022/11/CTA-Shapes.png\";s:8:\"filesize\";i:8604;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"CTA-Shapes-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1562;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"CTA-Shapes-1024x277.png\";s:5:\"width\";i:1024;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6247;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"CTA-Shapes-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"CTA-Shapes-768x207.png\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4532;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"CTA-Shapes-1536x415.png\";s:5:\"width\";i:1536;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9921;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("106","29","_elementor_source_image_hash","4b3b0da7084fcde1cbe40946cef7ab56312d044c");
INSERT INTO 7ja_postmeta VALUES("107","24","_elementor_data","[{\"id\":\"17c412c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"f361b93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1a0fe8cc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\" {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=7980221\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_typography_typography\":\"custom\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1236d9e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"_title\":\"Post Content\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"4364151e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"71c637bd\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.2)\"},\"align_mobile\":\"center\",\"image\":{\"id\":26,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"24092ee0\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1534d3ed\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"409e21a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Share Inner Section\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=0d046a4\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"79a55826\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4107483\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\" Share This {{Post}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Varela Round\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_typography_typography\":\"custom\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"},{\"id\":\"5e3dd8f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6a2e570c\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"7a6ea4f\"},{\"button\":\"linkedin\",\"_id\":\"709faff\"},{\"button\":\"email\",\"_id\":\"f5e66bc\"},{\"_id\":\"1b53a75\",\"button\":\"twitter\"}],\"view\":\"icon\",\"skin\":\"flat\",\"alignment\":\"left\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"button_size\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"icon_size\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"color_source\":\"custom\",\"alignment_mobile\":\"center\",\"__globals__\":{\"secondary_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"\",\"secondary_color_hover\":\"globals\\/colors?id=accent\",\"primary_color_hover\":\"\"},\"pa_condition_repeater\":[],\"shape\":\"circle\",\"primary_color\":\"#FFFEFE00\",\"secondary_color\":\"#26B6A3\",\"primary_color_hover\":\"#FFFEFE00\",\"secondary_color_hover\":\"#26B6A3\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5ddcd449\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"43a8c094\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"3e47e593\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_color\":\"rgba(159,163,173,0.2)\",\"arrow\":\"fa fa-arrow-left\",\"borders_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"borders_spacing\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"__globals__\":{\"label_color\":\"globals\\/colors?id=primary\",\"label_typography_typography\":\"globals\\/typography?id=cdaaf6a\",\"text_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"arrow_color\":\"globals\\/colors?id=primary\",\"sep_color\":\"globals\\/colors?id=primary\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"5ca868ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"More To Explore\",\"align_mobile\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[],\"title_color\":\"#26B6A3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1fc46ebb\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"2\",\"classic_posts_per_page\":\"2\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"posts_include\":[],\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#000000\",\"pagination_hover_color\":\"#00ce1b\",\"pagination_active_color\":\"#00ce1b\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"cards_columns\":\"2\",\"cards_posts_per_page\":\"2\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"cards_meta_data\":[\"author\",\"date\"],\"cards_show_read_more\":\"\",\"cards_show_avatar\":\"\",\"classic_alignment\":\"center\",\"cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"cards_alignment\":\"center\",\"cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_card_padding\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_badge_position\":\"left\",\"cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_thumbnail_size_size\":\"full\",\"__globals__\":{\"cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"cards_badge_color\":\"globals\\/colors?id=f898f31\",\"cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"cards_title_color\":\"globals\\/colors?id=primary\",\"cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"cards_meta_color\":\"globals\\/colors?id=text\",\"cards_meta_separator_color\":\"globals\\/colors?id=text\",\"cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"cards_excerpt_color\":\"globals\\/colors?id=text\",\"cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"classic_title_color\":\"globals\\/colors?id=primary\",\"classic_read_more_color\":\"globals\\/colors?id=primary\"},\"pa_condition_repeater\":[],\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("108","30","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("109","30","_elementor_template_type","single");
INSERT INTO 7ja_postmeta VALUES("110","30","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("111","30","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("112","30","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("113","24","_elementor_page_assets","a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("114","24","_elementor_conditions","a:1:{i:0;s:21:\"include/singular/post\";}");
INSERT INTO 7ja_postmeta VALUES("115","24","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("116","31","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("117","31","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("118","31","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("119","31","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("120","32","_wp_attached_file","2022/11/News-Hero-Bg.png");
INSERT INTO 7ja_postmeta VALUES("121","32","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("122","32","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1864;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2022/11/News-Hero-Bg.png\";s:8:\"filesize\";i:7195;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"News-Hero-Bg-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1457;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"News-Hero-Bg-1024x275.png\";s:5:\"width\";i:1024;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5746;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"News-Hero-Bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"News-Hero-Bg-768x206.png\";s:5:\"width\";i:768;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4146;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"News-Hero-Bg-1536x412.png\";s:5:\"width\";i:1536;s:6:\"height\";i:412;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9085;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("123","32","_elementor_source_image_hash","acc8b6d496b3af5078a3407f3036e8b8404decd0");
INSERT INTO 7ja_postmeta VALUES("128","31","_elementor_data","[{\"id\":\"4710bd78\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"fb84173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"79f13a30\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"sticky\":\"top\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"45e56de5\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"475840da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"27f6ab1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6871aa89\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"1d4d61ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"45482f11\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"605453a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"193e422b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"295c2a0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("129","34","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("130","34","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("131","34","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("132","34","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("133","34","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("134","31","_elementor_page_assets","a:2:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("135","31","_elementor_conditions","a:1:{i:0;s:28:\"include/archive/post_archive\";}");
INSERT INTO 7ja_postmeta VALUES("136","31","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("313","63","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("316","63","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("317","63","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("318","64","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("319","64","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("320","64","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("321","64","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("322","63","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("323","63","_elementor_data","[{\"id\":\"35963869\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8436134\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"629fa6ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:paragraph --><\\/p>\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl. Mauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Nulla euismod a mi eu elementum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet velit gravida tempor et quis mauris. Vestibulum fermentum est nulla, a accumsan libero ultrices nec.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Etiam erat quam, pellentesque in maximus vitae, sollicitudin sed dui. Fusce blandit turpis nec aliquam pharetra. Suspendisse imperdiet molestie imperdiet. Pellentesque imperdiet magna tincidunt, ultricies tellus at, aliquet sapien.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p><strong>Class aptent taciti socios<br><\\/strong>Lkad litora torquent per conubia nostra, per inceptos himenaeos. Praesent ut libero a ipsum aliquam accumsan. Maecenas ut arcu in justo euismod auctor. Donec facilisis efficitur ante a suscipit. Mauris maximus eu odio ac euismod. Maecenas faucibus turpis sed posuere volutpat. Sed tincidunt luctus massa ac aliquam. Integer tincidunt purus et diam dapibus, a rhoncus magna congue. Ut ut turpis suscipit massa mollis gravida. Proin ut dui in libero aliquet semper.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p><strong>Morbi a felis sapien<\\/strong><br>bibendum hendrerit elit, vitae posuere sem pharetra nec. Morbi suscipit suscipit luctus. Morbi posuere augue eu tristique mollis. Suspendisse fringilla venenatis placerat. Nunc id sapien pretium urna bibendum consectetur. Quisque blandit metus arcu, id ornare magna molestie nec. Proin malesuada a lacus nec mollis. Aliquam pellentesque purus ac nibh pharetra gravida.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Vestibulum quis elit rhoncus, ultricies dolor at, gravida orci. Curabitur ut luctus felis. Sed suscipit ut velit sit amet semper. Donec lorem sem, feugiat eget laoreet in, semper non elit. Ut accumsan lacus eu tellus venenatis tincidunt. Suspendisse at mauris.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Nulla vel ante eu leo rhoncus condimentum vitae et elit. Etiam vitae elementum orci. Aliquam quam turpis, malesuada non ultrices ac, mollis ut dui. Donec eu nisl ut sapien feugiat accumsan ut eget ligula. Phasellus pharetra gravida est id pellentesque. Aliquam erat volutpat. Phasellus venenatis ipsum ac metus sagittis bibendum.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>In sed rutrum magna. Nullam euismod metus ac sagittis viverra. Vivamus posuere vehicula risus a eleifend. Sed vel metus lacus. In hac habitasse platea dictumst. Morbi lacinia fermentum mi eget auctor. Aenean vehicula odio justo, ut gravida ex porttitor eu. Fusce sed blandit mauris, in tempus nisl. Sed rutrum elit non ante rhoncus, vel luctus neque pretium.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p><strong>Cras nec magna nec neque pulvinar commodo.<\\/strong><br>Duis libero mauris, elementum et dui vitae, malesuada egestas nisi. Maecenas dignissim consequat tellus quis dignissim. Ut ac convallis tellus, semper sodales erat. Nam ac nunc blandit, volutpat nunc a, accumsan velit. Praesent tincidunt purus iaculis diam posuere, at condimentum urna imperdiet. Nam sit amet pulvinar massa, id hendrerit ante. Vestibulum tellus tellus, eleifend nec placerat tempus, tincidunt at orci. Morbi mollis, justo aliquam venenatis euismod, diam ante sollicitudin lacus, ac fermentum sapien velit quis magna. Integer rutrum lacinia ullamcorper. Vivamus sit amet bibendum augue, non luctus diam. Cras nisi est, ultricies eget ipsum ut, viverra facilisis tortor.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\",\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("324","65","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("325","65","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("326","65","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("327","65","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("328","65","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("329","65","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("330","63","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("336","63","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("388","75","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("391","75","_elementor_version","3.15.0");
INSERT INTO 7ja_postmeta VALUES("392","75","_elementor_pro_version","3.15.0");
INSERT INTO 7ja_postmeta VALUES("397","75","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("398","75","_elementor_data","[{\"id\":\"68692224\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4555c6f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"62548cfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:paragraph --><\\/p>\\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.<\\/p>\\n<p>1.\\u00a0 Recognition and Recall:<\\/p>\\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.<\\/p>\\n<p>2. Building Trust and Credibility:<\\/p>\\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.<\\/p>\\n<p>3.\\u00a0 Customer Loyalty:<\\/p>\\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.<\\/p>\\n<div class=\\\"flex-1 overflow-hidden\\\">\\n<div class=\\\"react-scroll-to-bottom--css-bmgmx-79elbk h-full dark:bg-gray-800\\\">\\n<div class=\\\"react-scroll-to-bottom--css-bmgmx-1n7m0yu\\\">\\n<div class=\\\"flex flex-col text-sm dark:bg-gray-800\\\">\\n<div class=\\\"group w-full text-gray-800 dark:text-gray-100 border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\">\\n<div class=\\\"flex p-4 gap-4 text-base md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl md:py-6 lg:px-0 m-auto\\\">\\n<div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\">\\n<div class=\\\"flex flex-grow flex-col gap-3\\\">\\n<div class=\\\"min-h-[20px] flex items-start overflow-x-auto whitespace-pre-wrap break-words\\\">\\n<div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\">\\n<p>4. <strong>Competitive Advantage:<\\/strong><\\/p>\\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.<\\/p>\\n<p>5.\\u00a0 <strong>Employee Morale and Pride:<\\/strong><\\/p>\\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.<\\/p>\\n<p>6. <strong>Brand Extension and Diversification:<\\/strong><\\/p>\\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.<\\/p>\\n<p>7. <strong>Price Premium:<\\/strong><\\/p>\\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.<\\/p>\\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<p><!-- \\/wp:paragraph --><\\/p>\",\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("405","75","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("411","75","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("416","80","_wp_attached_file","2022/11/BG-Social-Media.png");
INSERT INTO 7ja_postmeta VALUES("417","80","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("418","80","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:453;s:4:\"file\";s:27:\"2022/11/BG-Social-Media.png\";s:8:\"filesize\";i:7845;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"BG-Social-Media-300x71.png\";s:5:\"width\";i:300;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1525;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"BG-Social-Media-1024x242.png\";s:5:\"width\";i:1024;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6085;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"BG-Social-Media-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:674;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"BG-Social-Media-768x181.png\";s:5:\"width\";i:768;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4332;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"BG-Social-Media-1536x362.png\";s:5:\"width\";i:1536;s:6:\"height\";i:362;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("419","80","_elementor_source_image_hash","f6e348b534728da156eaabfaf291b31516163c49");
INSERT INTO 7ja_postmeta VALUES("424","82","_wp_attached_file","2022/11/BG-Service-one.png");
INSERT INTO 7ja_postmeta VALUES("425","82","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("426","82","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:774;s:4:\"file\";s:26:\"2022/11/BG-Service-one.png\";s:8:\"filesize\";i:48600;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"BG-Service-one-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3174;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"BG-Service-one-1024x413.png\";s:5:\"width\";i:1024;s:6:\"height\";i:413;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BG-Service-one-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:822;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"BG-Service-one-768x310.png\";s:5:\"width\";i:768;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9326;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"BG-Service-one-1536x619.png\";s:5:\"width\";i:1536;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("427","82","_elementor_source_image_hash","ef2871de4648f1ba28d3c9ca69560aef6e719f74");
INSERT INTO 7ja_postmeta VALUES("436","85","_wp_attached_file","2022/11/BG-Join-Clients.png");
INSERT INTO 7ja_postmeta VALUES("437","85","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("438","85","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1921;s:6:\"height\";i:1051;s:4:\"file\";s:27:\"2022/11/BG-Join-Clients.png\";s:8:\"filesize\";i:33495;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"BG-Join-Clients-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4205;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"BG-Join-Clients-1024x560.png\";s:5:\"width\";i:1024;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18720;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"BG-Join-Clients-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1746;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"BG-Join-Clients-768x420.png\";s:5:\"width\";i:768;s:6:\"height\";i:420;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12910;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"BG-Join-Clients-1536x840.png\";s:5:\"width\";i:1536;s:6:\"height\";i:840;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31858;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("439","85","_elementor_source_image_hash","73aee315162035abecb9f9369be6552ca0d89d1c");
INSERT INTO 7ja_postmeta VALUES("440","86","_wp_attached_file","2022/11/Social-media.svg");
INSERT INTO 7ja_postmeta VALUES("441","86","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("442","86","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:1823;s:5:\"width\";i:74;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("443","86","_elementor_source_image_hash","30a45710da721e4ed7b117792deada9747eb2afd");
INSERT INTO 7ja_postmeta VALUES("444","87","_wp_attached_file","2022/11/SEO.svg");
INSERT INTO 7ja_postmeta VALUES("445","87","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("446","87","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:2322;s:5:\"width\";i:75;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("447","87","_elementor_source_image_hash","10624cf2e69f6ee4123a6db01b38be1c72c95096");
INSERT INTO 7ja_postmeta VALUES("448","88","_wp_attached_file","2022/11/PPC.svg");
INSERT INTO 7ja_postmeta VALUES("449","88","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("450","88","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:1937;s:5:\"width\";i:75;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("451","88","_elementor_source_image_hash","bc7a7ce6557bdedcf7078de5c9fe337b5063779f");
INSERT INTO 7ja_postmeta VALUES("452","89","_wp_attached_file","2022/11/BG-more-Services.png");
INSERT INTO 7ja_postmeta VALUES("453","89","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("454","89","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1691;s:6:\"height\";i:782;s:4:\"file\";s:28:\"2022/11/BG-more-Services.png\";s:8:\"filesize\";i:47847;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"BG-more-Services-300x139.png\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3845;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"BG-more-Services-1024x474.png\";s:5:\"width\";i:1024;s:6:\"height\";i:474;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"BG-more-Services-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1493;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"BG-more-Services-768x355.png\";s:5:\"width\";i:768;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11810;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"BG-more-Services-1536x710.png\";s:5:\"width\";i:1536;s:6:\"height\";i:710;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28655;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("455","89","_elementor_source_image_hash","a2a6dfed472d8457d33e5918bc5b0d563fec1d96");
INSERT INTO 7ja_postmeta VALUES("478","94","_wp_attached_file","2022/11/BG-contact-hero-New.png");
INSERT INTO 7ja_postmeta VALUES("479","94","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("480","94","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2022/11/BG-contact-hero-New.png\";s:8:\"filesize\";i:31413;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"BG-contact-hero-New-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1608;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"BG-contact-hero-New-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6581;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"BG-contact-hero-New-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:590;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"BG-contact-hero-New-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4797;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"BG-contact-hero-New-1536x400.png\";s:5:\"width\";i:1536;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10580;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("481","94","_elementor_source_image_hash","6fd6f1ef72141fd9504117d8c96b0b6fc09ba9fe");
INSERT INTO 7ja_postmeta VALUES("482","95","_wp_attached_file","2022/11/BG-Form-Contact-Us.png");
INSERT INTO 7ja_postmeta VALUES("483","95","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("484","95","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1924;s:6:\"height\";i:734;s:4:\"file\";s:30:\"2022/11/BG-Form-Contact-Us.png\";s:8:\"filesize\";i:46622;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"BG-Form-Contact-Us-300x114.png\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2985;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"BG-Form-Contact-Us-1024x391.png\";s:5:\"width\";i:1024;s:6:\"height\";i:391;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12919;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"BG-Form-Contact-Us-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"BG-Form-Contact-Us-768x293.png\";s:5:\"width\";i:768;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9019;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"BG-Form-Contact-Us-1536x586.png\";s:5:\"width\";i:1536;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22236;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("485","95","_elementor_source_image_hash","e437b7d2aea9629369eba5ce9792ce917ed8eda0");
INSERT INTO 7ja_postmeta VALUES("486","96","_wp_attached_file","2022/11/iphone.svg");
INSERT INTO 7ja_postmeta VALUES("487","96","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("488","96","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:1444;s:5:\"width\";i:75;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("489","96","_elementor_source_image_hash","16a8bfabcaa81359651484dd06f8cadf4ab661e6");
INSERT INTO 7ja_postmeta VALUES("490","97","_wp_attached_file","2022/11/Location.svg");
INSERT INTO 7ja_postmeta VALUES("491","97","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("492","97","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:1285;s:5:\"width\";i:74;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("493","97","_elementor_source_image_hash","5df3e692654a93ba1837784e98c94d7d71841039");
INSERT INTO 7ja_postmeta VALUES("494","98","_wp_attached_file","2022/11/Mail.svg");
INSERT INTO 7ja_postmeta VALUES("495","98","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("496","98","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:2140;s:5:\"width\";i:75;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("497","98","_elementor_source_image_hash","d5ccc5ebc72d4a6e79948ff169a7f9d8fd0d9812");
INSERT INTO 7ja_postmeta VALUES("498","99","_wp_attached_file","2022/11/BG-contact-info.png");
INSERT INTO 7ja_postmeta VALUES("499","99","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("500","99","_wp_attachment_metadata","a:6:{s:5:\"width\";i:615;s:6:\"height\";i:404;s:4:\"file\";s:27:\"2022/11/BG-contact-info.png\";s:8:\"filesize\";i:14890;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"BG-contact-info-300x197.png\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4658;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"BG-contact-info-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2539;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("501","99","_elementor_source_image_hash","ecd4faaf5278e4553a8b3133efb6a282d7b82c29");
INSERT INTO 7ja_postmeta VALUES("520","103","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("521","103","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("522","103","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("523","103","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("524","104","_wp_attached_file","2022/11/Clients-BG-hero-new.png");
INSERT INTO 7ja_postmeta VALUES("525","104","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("526","104","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2022/11/Clients-BG-hero-new.png\";s:8:\"filesize\";i:9089;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Clients-BG-hero-new-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1822;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Clients-BG-hero-new-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7203;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Clients-BG-hero-new-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:469;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Clients-BG-hero-new-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5209;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"Clients-BG-hero-new-1536x400.png\";s:5:\"width\";i:1536;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("527","104","_elementor_source_image_hash","cf866273927c8e89ed286bbf023f2e40864fdaec");
INSERT INTO 7ja_postmeta VALUES("592","121","_wp_attached_file","2022/11/BG-Clients-new.png");
INSERT INTO 7ja_postmeta VALUES("593","121","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("594","121","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1924;s:6:\"height\";i:661;s:4:\"file\";s:26:\"2022/11/BG-Clients-new.png\";s:8:\"filesize\";i:37130;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"BG-Clients-new-300x103.png\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2026;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"BG-Clients-new-1024x352.png\";s:5:\"width\";i:1024;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8748;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BG-Clients-new-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"BG-Clients-new-768x264.png\";s:5:\"width\";i:768;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6130;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"BG-Clients-new-1536x528.png\";s:5:\"width\";i:1536;s:6:\"height\";i:528;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14945;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("595","121","_elementor_source_image_hash","02ecdf3d4096824075c637c90a3dc6223cfce368");
INSERT INTO 7ja_postmeta VALUES("616","127","_wp_attached_file","2022/11/Bg-Testimonials-2.png");
INSERT INTO 7ja_postmeta VALUES("617","127","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("618","127","_wp_attachment_metadata","a:6:{s:5:\"width\";i:515;s:6:\"height\";i:355;s:4:\"file\";s:29:\"2022/11/Bg-Testimonials-2.png\";s:8:\"filesize\";i:4587;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Bg-Testimonials-2-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5448;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Bg-Testimonials-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:2496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("619","127","_elementor_source_image_hash","a03e427119d45cce9f4b284629c4674f50e4eac1");
INSERT INTO 7ja_postmeta VALUES("628","103","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("629","103","_elementor_data","[{\"id\":\"7dce709f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":363,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"63d78628\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1750b64a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Projects}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"7757f03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b1835c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c2aa99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ffa81d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b26fa53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5284496d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"263e51b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"40ca50fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e76f662\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bb7ae4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_external_url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"683beae7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1929051a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3cc844e5\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"Core Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Core-Financial.png\",\"id\":1013,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/corefinancialpros.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"Accounting Cornerstone Foundation\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"d1e34f0\",\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"Designated Motivator\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Designated-Motivator.png\",\"id\":1015,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/designatedmotivator.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73547d4f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":1210,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ffc704b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8088eee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Other {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"PORTFOLIO\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1b2a6d1\",\"elType\":\"widget\",\"settings\":{\"premium_gallery_img_size_select\":\"masonry\",\"thumbnail_size\":\"large\",\"premium_gallery_column_number\":\"33.330%\",\"premium_gallery_load_more_text\":\"Load More\",\"premium_gallery_filter\":\"\",\"premium_gallery_first_cat_label\":\"All\",\"premium_gallery_cats_content\":[{\"premium_gallery_img_cat\":\"Category 1\",\"_id\":\"a09c856\"},{\"premium_gallery_img_cat\":\"Category 2\",\"_id\":\"f51c109\"}],\"url_flag\":\"cat\",\"premium_gallery_img_content\":[{\"premium_gallery_img_category\":\"Category 1\",\"_id\":\"a989a7f\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Summer-Hiking-Series-Correct-1024x576-1.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"premium_gallery_img_category\":\"Category 2\",\"_id\":\"ef30d16\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/BFD-main-logo.webp\",\"id\":333,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"0b8ad66\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\",\"id\":456,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/pivotallid.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"9579c37\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"230e833\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pianoonbeach-1.jpeg\",\"id\":452,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/markpianoman.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a882be7\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_image_cell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"premium_gallery_image_vcell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},{\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\",\"id\":925,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/www.fitcfo.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d21652e\"},{\"_id\":\"60d9b8e\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-img-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e02ee23\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"40460ad2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5aeaa30\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"Name\",\"dynamic\":{\"active\":true},\"_id\":\"364cf30\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"_id\":\"f31ff13\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"placeholder\":\"Message\",\"_id\":\"4e5acd1\",\"required\":\"true\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"helloben@latitude39creative.com\",\"email_subject\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@latitude39creative.com\",\"email_from_name\":\"Latitude 39 Creative\",\"email_to_2\":\"latitude39creative@gmail.com\",\"email_subject_2\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@latitude39creative.com\",\"email_from_name_2\":\"Latitude 39 Creative\",\"email_reply_to_2\":\"latitude39creative@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF00\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"field_text_color\":\"globals\\/colors?id=primary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"536aebda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32eaf23c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"d3da867\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5b006f18\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a355d51\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"helloben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:helloben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("636","103","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("637","103","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("638","131","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("639","131","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("640","131","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("641","131","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("642","132","_wp_attached_file","2022/11/Bg-Services-Hero-New.png");
INSERT INTO 7ja_postmeta VALUES("643","132","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("644","132","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1919;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2022/11/Bg-Services-Hero-New.png\";s:8:\"filesize\";i:8654;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Bg-Services-Hero-New-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1642;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Bg-Services-Hero-New-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Bg-Services-Hero-New-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:565;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Bg-Services-Hero-New-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4659;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"Bg-Services-Hero-New-1536x400.png\";s:5:\"width\";i:1536;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10225;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("645","132","_elementor_source_image_hash","1841efa818bdb9ee8d7db9ecf4b32c6af58ca9be");
INSERT INTO 7ja_postmeta VALUES("646","133","_wp_attached_file","2022/11/Digital-Consulting.svg");
INSERT INTO 7ja_postmeta VALUES("647","133","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("648","133","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:1773;s:5:\"width\";i:75;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("649","133","_elementor_source_image_hash","2a24536e198efd14f357624734c051ec17aacd09");
INSERT INTO 7ja_postmeta VALUES("650","134","_wp_attached_file","2022/11/Web-Design.svg");
INSERT INTO 7ja_postmeta VALUES("651","134","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("652","134","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:1717;s:5:\"width\";i:74;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("653","134","_elementor_source_image_hash","8b71c80b326e58384e6390ce736d7a5ff1ee2e45");
INSERT INTO 7ja_postmeta VALUES("654","135","_wp_attached_file","2022/11/content-marketing.svg");
INSERT INTO 7ja_postmeta VALUES("655","135","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("656","135","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:1937;s:5:\"width\";i:75;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("657","135","_elementor_source_image_hash","83ae0fe53ec52c7889540e10676407aa0553a845");
INSERT INTO 7ja_postmeta VALUES("658","136","_wp_attached_file","2022/11/Branding.svg");
INSERT INTO 7ja_postmeta VALUES("659","136","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("660","136","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:2368;s:5:\"width\";i:75;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("661","136","_elementor_source_image_hash","8aad16c4e746ab59b01bf9c50ca02c982f18a09c");
INSERT INTO 7ja_postmeta VALUES("662","137","_wp_attached_file","2022/11/Research.svg");
INSERT INTO 7ja_postmeta VALUES("663","137","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("664","137","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:1309;s:5:\"width\";i:75;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("665","137","_elementor_source_image_hash","38f26892bbe310ff6fb5985df416cb3607db1b06");
INSERT INTO 7ja_postmeta VALUES("666","138","_wp_attached_file","2022/11/Strategy.svg");
INSERT INTO 7ja_postmeta VALUES("667","138","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("668","138","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:2223;s:5:\"width\";i:74;s:6:\"height\";i:66;}");
INSERT INTO 7ja_postmeta VALUES("669","138","_elementor_source_image_hash","35f448a5b61b61829b710f2fa4320871383c12ac");
INSERT INTO 7ja_postmeta VALUES("670","139","_wp_attached_file","2022/11/Bg-Services.png");
INSERT INTO 7ja_postmeta VALUES("671","139","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("672","139","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1722;s:6:\"height\";i:1564;s:4:\"file\";s:23:\"2022/11/Bg-Services.png\";s:8:\"filesize\";i:91025;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Bg-Services-300x272.png\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6630;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Bg-Services-1024x930.png\";s:5:\"width\";i:1024;s:6:\"height\";i:930;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29125;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Bg-Services-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2930;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Bg-Services-768x698.png\";s:5:\"width\";i:768;s:6:\"height\";i:698;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20287;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"Bg-Services-1536x1395.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1395;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("673","139","_elementor_source_image_hash","2ff1f88bfa88db80011b6f060f37831544db9931");
INSERT INTO 7ja_postmeta VALUES("682","142","_wp_attached_file","2022/11/Bg-more-about-the-services.png");
INSERT INTO 7ja_postmeta VALUES("683","142","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("684","142","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1184;s:4:\"file\";s:38:\"2022/11/Bg-more-about-the-services.png\";s:8:\"filesize\";i:69862;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Bg-more-about-the-services-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3880;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Bg-more-about-the-services-1024x631.png\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17766;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Bg-more-about-the-services-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1948;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Bg-more-about-the-services-768x474.png\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12381;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Bg-more-about-the-services-1536x947.png\";s:5:\"width\";i:1536;s:6:\"height\";i:947;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30839;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("685","142","_elementor_source_image_hash","3afeaafe3e40926de6e8937d1c0ce90efb75555e");
INSERT INTO 7ja_postmeta VALUES("686","143","_wp_attached_file","2022/11/BG-FAQ-Services.png");
INSERT INTO 7ja_postmeta VALUES("687","143","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("688","143","_wp_attachment_metadata","a:6:{s:5:\"width\";i:720;s:6:\"height\";i:599;s:4:\"file\";s:27:\"2022/11/BG-FAQ-Services.png\";s:8:\"filesize\";i:21912;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"BG-FAQ-Services-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5626;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"BG-FAQ-Services-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2422;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("689","143","_elementor_source_image_hash","9ed0446590b7cc1929e92adcdfc2a19fda4ee407");
INSERT INTO 7ja_postmeta VALUES("698","131","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("699","131","_elementor_data","[{\"id\":\"567175ec\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3751f680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55a9f657\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Services}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"0571326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"29617a9e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6711f61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32361140\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4400f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"efc4ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book A Call!\",\"button_text_color\":\"#000000\",\"button_background_hover_color\":\"#F2295B\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"9180ecf\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4ea5699f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a981a08\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5be0334f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37e2a5f3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"65a5a3af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37dda3f9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"558049f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd05df7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68ed80ff\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"187d7da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3f5cf61f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bb52126\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#30353c\",\"_element_id\":\"xs_pricing_8\",\"ekit_all_conditions_list\":[{\"_id\":\"c5373fb\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\",\"id\":390,\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a47c13a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"3642df5\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"_inline_size\":null,\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ec2fd6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2dbab3c\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"47d08d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"80bc1b3\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2c92a963\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Monthly Website Retainer\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"500\",\"ekit_pricing_table_duration\":\"\\/Month\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"Up To 10 Hours Website Updates\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"2 Domains\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily Backup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"4 Hours Of Thought Collaboration\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"1ba1984\",\"ekit_pricing_list\":\"Domain Maintenance\"},{\"ekit_pricing_list\":\"Email Maintenance\",\"_id\":\"a627ed5\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7715fe0\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-handshake\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_pricing_order_enable\":\"\",\"ekit_pricing_order_header\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"ekit_pricing_btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"7127c01\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"3de985a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"2b48022\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5abcc645\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Website Rebuild\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"2500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily  Backups\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Transfer Email Service\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Consultation Meeting\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"04cbf73\"},{\"ekit_pricing_list\":\"Website Rebuild (up to 10 pages)\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"f445a35\",\"ekit_pricing_list\":\"E-commerce Store\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_text_color\":\"#000000\",\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#1cf196\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"#1cf196\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"#1cf196\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"ba35f89\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_bg_hover_color_group_color\":\"globals\\/colors?id=f898f31\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"6835139\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"5531e400\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"b60bffc\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34cbbb7b\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Branding & Rebranding\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"3500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"6b5e5a1\"},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Branding\\/Consultation Meetings\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"453077d\"},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Website Build\\/Rebuild\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Email Setup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"519321e\",\"ekit_pricing_list\":\"Daily Backup\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7caaebd\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-brands\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"01cc5aa\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"4d03d237\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"70a121a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"95746a5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s Get To {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"658e159e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("706","131","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("707","131","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("708","147","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("709","147","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("710","147","_elementor_version","3.17.3");
INSERT INTO 7ja_postmeta VALUES("711","147","_elementor_pro_version","3.17.1");
INSERT INTO 7ja_postmeta VALUES("712","148","_wp_attached_file","2022/11/Bg-About-New.png");
INSERT INTO 7ja_postmeta VALUES("713","148","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("714","148","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:501;s:4:\"file\";s:24:\"2022/11/Bg-About-New.png\";s:8:\"filesize\";i:8780;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Bg-About-New-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1579;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Bg-About-New-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6381;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Bg-About-New-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:442;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Bg-About-New-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4565;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"Bg-About-New-1536x401.png\";s:5:\"width\";i:1536;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10281;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("715","148","_elementor_source_image_hash","d6ace5182edc5821b1490148d7a20709f2375393");
INSERT INTO 7ja_postmeta VALUES("720","150","_wp_attached_file","2022/11/BG-intro-About.png");
INSERT INTO 7ja_postmeta VALUES("721","150","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("722","150","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1921;s:6:\"height\";i:768;s:4:\"file\";s:26:\"2022/11/BG-intro-About.png\";s:8:\"filesize\";i:47475;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"BG-intro-About-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3078;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"BG-intro-About-1024x409.png\";s:5:\"width\";i:1024;s:6:\"height\";i:409;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12771;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BG-intro-About-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1359;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"BG-intro-About-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8976;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"BG-intro-About-1536x614.png\";s:5:\"width\";i:1536;s:6:\"height\";i:614;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21986;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("723","150","_elementor_source_image_hash","7085a09d90fada26ccc93bea91df365907850d38");
INSERT INTO 7ja_postmeta VALUES("724","151","_wp_attached_file","2022/11/We-believe-BG.png");
INSERT INTO 7ja_postmeta VALUES("725","151","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("726","151","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1173;s:6:\"height\";i:837;s:4:\"file\";s:25:\"2022/11/We-believe-BG.png\";s:8:\"filesize\";i:41764;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"We-believe-BG-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5493;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"We-believe-BG-1024x731.png\";s:5:\"width\";i:1024;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23839;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"We-believe-BG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2513;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"We-believe-BG-768x548.png\";s:5:\"width\";i:768;s:6:\"height\";i:548;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16645;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("727","151","_elementor_source_image_hash","017406719b97fccf705a57ad90b0cb9ed94f553c");
INSERT INTO 7ja_postmeta VALUES("764","161","_wp_attached_file","2022/11/BG-About-Team-section.png");
INSERT INTO 7ja_postmeta VALUES("765","161","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("766","161","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1528;s:4:\"file\";s:33:\"2022/11/BG-About-Team-section.png\";s:8:\"filesize\";i:72629;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BG-About-Team-section-300x239.png\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1284;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BG-About-Team-section-1024x815.png\";s:5:\"width\";i:1024;s:6:\"height\";i:815;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5176;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BG-About-Team-section-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:729;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BG-About-Team-section-768x611.png\";s:5:\"width\";i:768;s:6:\"height\";i:611;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3538;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BG-About-Team-section-1536x1222.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1222;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8794;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("767","161","_elementor_source_image_hash","91fdbb3675db371f633b01d2de3679e16a85643e");
INSERT INTO 7ja_postmeta VALUES("792","147","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("793","147","_elementor_data","[{\"id\":\"458b1c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_xpos\":{\"unit\":\"px\",\"size\":-33,\"sizes\":[]},\"background_size\":\"cover\",\"background_position_tablet\":\"center left\",\"background_position_mobile\":\"center left\",\"background_size_tablet\":\"auto\",\"background_overlay_color\":\"#000000D6\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2aec8865\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e48cf72\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{About}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":178,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-150,\"to\":150}},\"premium_fe_Ytranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":0,\"to\":0}},\"premium_fe_rotate_switcher\":\"yes\",\"premium_fe_Xrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"premium_fe_Yrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-46,\"to\":47}},\"premium_fe_Zrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"47acb39d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"566b1ce4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"150b4d80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"525c7ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54a2b75a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd5aec1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"11c3c600\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get, the more real your business will become.<\\/h5><h5>This will help us create a step-by-step plan that will make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"603aa15c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_color\":\"#000000\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_image_tablet\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":\"380\",\"size\":\"\"},\"background_position_tablet\":\"center right\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4345daf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2d2cac35\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"Meet Our Expert Web Designers\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=text\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff36f30\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#000000\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f187dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d7eb57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"456fa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"67cbe31f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24ce1aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68c16b2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb41c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cb7eae4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a42b2bc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"27e6b700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"65f66110\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c8d490\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1f3b4bc8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e4f461e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4d655c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aea7b2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand & Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e64f885\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ef13c9f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e056507\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e2bf99c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"align\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"9c1a377\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s{{Talk}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"220d247e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"202\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("800","147","_elementor_page_assets","a:2:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("801","147","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("802","169","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("803","169","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("804","169","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("805","169","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("810","171","_wp_attached_file","2022/11/BG-HomePage-High.png");
INSERT INTO 7ja_postmeta VALUES("811","171","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("812","171","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:780;s:4:\"file\";s:28:\"2022/11/BG-HomePage-High.png\";s:8:\"filesize\";i:11525;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"BG-HomePage-High-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2061;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"BG-HomePage-High-1024x416.png\";s:5:\"width\";i:1024;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8373;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"BG-HomePage-High-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:762;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"BG-HomePage-High-768x312.png\";s:5:\"width\";i:768;s:6:\"height\";i:312;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6019;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"BG-HomePage-High-1536x624.png\";s:5:\"width\";i:1536;s:6:\"height\";i:624;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13465;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("813","171","_elementor_source_image_hash","0145f22674eed8b6f21631c00a735036c4b982c1");
INSERT INTO 7ja_postmeta VALUES("818","173","_wp_attached_file","2022/11/BG-home-new4.png");
INSERT INTO 7ja_postmeta VALUES("819","173","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("820","173","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2022/11/BG-home-new4.png\";s:8:\"filesize\";i:53117;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"BG-home-new4-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3883;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"BG-home-new4-1024x427.png\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17608;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"BG-home-new4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2033;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"BG-home-new4-768x320.png\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12451;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"BG-home-new4-1536x640.png\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29251;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("821","173","_elementor_source_image_hash","0b93cd85fe0bbd3905e4cbeee496dade34386d85");
INSERT INTO 7ja_postmeta VALUES("822","174","_wp_attached_file","2022/11/Shapes-icons.png");
INSERT INTO 7ja_postmeta VALUES("823","174","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("824","174","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1761;s:6:\"height\";i:790;s:4:\"file\";s:24:\"2022/11/Shapes-icons.png\";s:8:\"filesize\";i:48397;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Shapes-icons-300x135.png\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3608;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Shapes-icons-1024x459.png\";s:5:\"width\";i:1024;s:6:\"height\";i:459;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Shapes-icons-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1083;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Shapes-icons-768x345.png\";s:5:\"width\";i:768;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10726;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"Shapes-icons-1536x689.png\";s:5:\"width\";i:1536;s:6:\"height\";i:689;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25737;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("825","174","_elementor_source_image_hash","81b757c09fd93d498a253bb88fbb65b31b681240");
INSERT INTO 7ja_postmeta VALUES("826","175","_wp_attached_file","2022/11/BG-TEAN-Home.png");
INSERT INTO 7ja_postmeta VALUES("827","175","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("828","175","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:580;s:4:\"file\";s:24:\"2022/11/BG-TEAN-Home.png\";s:8:\"filesize\";i:4364;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"BG-TEAN-Home-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:807;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"BG-TEAN-Home-1024x309.png\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2817;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"BG-TEAN-Home-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:652;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"BG-TEAN-Home-768x232.png\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2035;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"BG-TEAN-Home-1536x464.png\";s:5:\"width\";i:1536;s:6:\"height\";i:464;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4711;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("829","175","_elementor_source_image_hash","9abebba182f6be6bbb0556731c135bd707a091ca");
INSERT INTO 7ja_postmeta VALUES("830","176","_wp_attached_file","2022/11/BG-Testemonials-home-page.png");
INSERT INTO 7ja_postmeta VALUES("831","176","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("832","176","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:620;s:4:\"file\";s:37:\"2022/11/BG-Testemonials-home-page.png\";s:8:\"filesize\";i:3536;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"BG-Testemonials-home-page-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:550;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"BG-Testemonials-home-page-1024x331.png\";s:5:\"width\";i:1024;s:6:\"height\";i:331;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1897;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"BG-Testemonials-home-page-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"BG-Testemonials-home-page-768x248.png\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1304;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"BG-Testemonials-home-page-1536x496.png\";s:5:\"width\";i:1536;s:6:\"height\";i:496;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3124;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("833","176","_elementor_source_image_hash","08ba49ffd5ff576bc91a8d6af665005092b38958");
INSERT INTO 7ja_postmeta VALUES("842","169","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("843","169","_elementor_data","[{\"id\":\"3ab7a184\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d429e63\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.49000000000000198951966012828052043914794921875,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"31aff16f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"YOUR {{CREATIVE}} DESIGN AGENCY\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#06D9FA\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"589a10d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3169817b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.368999999999999772626324556767940521240234375,\"_inline_size_mobile\":40,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c38baa9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_fe_switcher\":\"yes\",\"premium_fe_translate_switcher\":\"yes\",\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-21,\"to\":26}},\"premium_fe_trans_duration\":{\"unit\":\"px\",\"size\":2100,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"primary_color\":\"globals\\/colors?id=text\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4c4f3503\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.558999999999997498889570124447345733642578125,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_mobile\":60,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4880c8e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3c78573f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT OUR\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h5\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69fc46c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=9d6a5f6\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e60924e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creative Studio\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"\",\"text_stroke_stroke_color\":\"globals\\/colors?id=accent\"},\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"29315c5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.46600000000000108002495835535228252410888671875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"771647ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"23398cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76ed954\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b472709\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7d92e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"74184588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"71c65aa0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7eb4d73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"36dbfd13\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55ef396b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4db070ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#5CD2B93D\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34fc5136\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"50f1a846\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"507e018b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"406eae34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4839b663\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67edef15\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"_element_id\":\"about\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"584e297c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b1e6693\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fbb7944\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a64761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e526aaf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"13ac731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"617dcde5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5a60bb76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2826f19a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa8e9b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6602bb9b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"64f2c52a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4ed84a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7dc43681\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a7f97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6e447532\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"102e0cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2f14b914\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27be53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand and Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"263b0e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1014f657\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3690c3e0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1207cca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ae16cfe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"233e8a2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"73b22df\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"367b8ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b6f228f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_b\":\"#000000\",\"content_width\":{\"unit\":\"px\",\"size\":619,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3eeed8c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"682bf5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13d3463d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":100,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Projects\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":395,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"a41c39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d8c3db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c4cc6e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Customers\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":396,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"429b7994\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7526c532\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"78535be1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3d751f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4f9344f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ecbe4b3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6f63b2bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6d65770\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0821c23\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"_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\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16c70d9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e027c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a00ac3\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"BFD Advisors\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/IpadYellowTrans-1.png\",\"id\":448,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"title\":\"Pints and Peaks\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pints-and-Peaks.png\",\"id\":453,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"d1e34f0\",\"button_text\":\"Get Started\"},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"BluePrint Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\",\"id\":457,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/blueprintfin.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Check Us Out\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f4ea8f0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4a29b5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8756f2b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Partners}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"298859b\",\"elType\":\"widget\",\"settings\":{\"carousel_slides\":[{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/premium-addons-logo.png\",\"id\":706,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"55b7252\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/leap13-logo.png\",\"id\":707,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"595eca4\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/06\\/Elementor-Logo-Full-Red.png\",\"id\":906,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"274e2e5\",\"link\":{\"url\":\"https:\\/\\/be.elementor.com\\/visit\\/?bta=204996&brand=elementor\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"logos_vertical_alignment\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-logo-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b37233\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"390\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.729999999999999982236431605997495353221893310546875,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"77c0c709\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"322103cb\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What Our {{Clients}} Say.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"_animation\":\"fadeInUp\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"4ffa24b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ba4e90d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4730800f\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"April Sinclair\",\"designation\":\"\",\"review\":\"We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.\",\"client_photo\":{\"id\":\"\",\"url\":\"\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"}}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_client_name_typography_typography\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_designation_active_color\":\"\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_testimonial_title_separator_color\":\"#26B6A3\",\"ekit_testimonial_client_name_normal_color\":\"#C0BFBF\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":274,\"sizes\":[]},\"ekit_testimonial_left_right_spacing\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ee0b3a7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"24604f5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6415ae45\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{Blog}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5d4bcdbf\",\"elType\":\"section\",\"settings\":{\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75f768d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a537c23\",\"elType\":\"widget\",\"settings\":{\"premium_blog_grid\":\"\",\"premium_blog_number_of_posts\":1,\"premium_blog_excerpt_text\":\"Read More \\u00bb\",\"premium_blog_tab_label\":\"All\",\"premium_blog_prev_text\":\"Previous\",\"premium_blog_next_text\":\"Next\",\"categories_repeater\":[{\"_id\":\"fe0d3b9\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-addon-blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49f295c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f3fab24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e5a28d3\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"697c0728\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b7e42f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3bd4414f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"41454617\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6169e409\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("850","169","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("851","169","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("879","189","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("880","189","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("881","189","_menu_item_object_id","147");
INSERT INTO 7ja_postmeta VALUES("882","189","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("883","189","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("884","189","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("885","189","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("886","189","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("887","189","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("888","190","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("889","190","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("890","190","_menu_item_object_id","103");
INSERT INTO 7ja_postmeta VALUES("891","190","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("892","190","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("893","190","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("894","190","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("895","190","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("896","190","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("906","192","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("907","192","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("908","192","_menu_item_object_id","169");
INSERT INTO 7ja_postmeta VALUES("909","192","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("910","192","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("911","192","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("912","192","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("913","192","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("914","192","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("915","193","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("916","193","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("917","193","_menu_item_object_id","131");
INSERT INTO 7ja_postmeta VALUES("918","193","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("919","193","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("920","193","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("921","193","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("922","193","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("923","193","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("933","195","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("934","195","_elementor_template_type","error-404");
INSERT INTO 7ja_postmeta VALUES("935","195","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("936","195","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("937","195","_elementor_data","[{\"id\":\"54187df1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":16,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/404.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"404\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"2b853ab5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"50fcc1d8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":12,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Oval.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":\"292\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"71\",\"unit\":\"px\"},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_direction\":\"negative\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.2\",\"sizes\":[]},\"_offset_x_tablet\":{\"size\":\"77\",\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":\"2\",\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":\"72\",\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":\"62\",\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_animation\":\"rotateInDownLeft\",\"_animation_delay\":\"400\",\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a329044\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Fill-1.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":\"880\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"62\",\"unit\":\"px\"},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.1\",\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]},\"_offset_x_tablet\":{\"size\":\"622\",\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":\"217\",\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":\"6\",\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":\"526\",\"unit\":\"px\"},\"_animation\":\"rotateInDownLeft\",\"_animation_delay\":\"700\",\"width_mobile\":{\"unit\":\"%\",\"size\":\"50\",\"sizes\":[]},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f50bdba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":14,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Oval-Copy.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":\"222\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"39\",\"unit\":\"px\"},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.1\",\"sizes\":[]},\"_offset_x_tablet\":{\"size\":\"19\",\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":\"32\",\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":\"-30\",\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":\"500\",\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c656575\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"700\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Shape.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"9\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"overflow\":\"hidden\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"66f8c7e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4f54a80b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ooops.\",\"align\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ccc280a\",\"title_color\":\"globals\\/colors?id=f898f31\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"123e713d\",\"elType\":\"widget\",\"settings\":{\"title\":\" I Think You Got Lost Between The Shapes.\",\"align\":\"center\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=6ed476c\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77b831d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Page You Were Looking For Couldn\'t Be Found.\",\"align\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1536f17\",\"elType\":\"widget\",\"settings\":{\"text\":\"back to home page\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"align_mobile\":\"center\",\"align\":\"center\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7a41abc\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"button_text_color\":\"globals\\/colors?id=f898f31\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=f898f31\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("938","195","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("939","195","_elementor_conditions","a:1:{i:0;s:29:\"include/singular/not_found404\";}");
INSERT INTO 7ja_postmeta VALUES("940","195","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("953","197","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("954","197","_elementor_template_type","single");
INSERT INTO 7ja_postmeta VALUES("955","197","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("956","197","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("957","197","_elementor_data","[{\"id\":\"36c301aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":25,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Post-BG.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"195\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"Hero\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"72dd433d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3cf2cbc2\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=2c11d45\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"3b923337\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"ede85bd\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"custom_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"show_icon\":\"none\",\"link\":\"\",\"date_format\":\"default\",\"time_format\":\"default\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"custom_text\":\"\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"ef11192\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"custom_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"show_icon\":\"none\",\"link\":\"\",\"type\":\"date\",\"date_format\":\"default\",\"time_format\":\"default\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"custom_text\":\"\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=f898f31\",\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"globals\\/colors?id=f898f31\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"post-info\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1236d9e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Post Content\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4364151e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"71c637bd\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.2)\"},\"align_mobile\":\"center\",\"image\":{\"id\":26,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"24092ee0\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39c90e20\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%2C%22max_length%22%3A%22%22%7D\\\"]\"},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=9525bd0\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"},{\"id\":\"1534d3ed\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"409e21a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Share Inner Section\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=0d046a4\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79a55826\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"10466370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share This Post\",\"align_mobile\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6ed476c\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"1\"},{\"id\":\"5e3dd8f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6a2e570c\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"7a6ea4f\",\"button\":\"facebook\",\"text\":\"\"},{\"button\":\"linkedin\",\"_id\":\"709faff\",\"text\":\"\"},{\"button\":\"twitter\",\"_id\":\"c0a1579\",\"text\":\"\"},{\"button\":\"email\",\"_id\":\"f5e66bc\",\"text\":\"\"}],\"view\":\"icon\",\"skin\":\"flat\",\"alignment\":\"right\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"button_size\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"icon_size\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"color_source\":\"custom\",\"alignment_mobile\":\"center\",\"__globals__\":{\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=f898f31\",\"secondary_color_hover\":\"globals\\/colors?id=primary\",\"primary_color_hover\":\"globals\\/colors?id=f898f31\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5ddcd449\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"43a8c094\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"678b7110\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"25\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_overlay_position_mobile\":\"initial\",\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":\"-543\",\"sizes\":[]},\"background_overlay_image\":{\"id\":27,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/BG-Post-Sub.png\"},\"_title\":\"Subscribe Inner Section\",\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=b500f0a\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"31d9f4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e422bc4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"align_mobile\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=f8a9e51\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42ec2661\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get updates and learn from the best\",\"align_mobile\":\"center\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1026c911\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1dafd1bc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Enter Your Email\",\"width\":\"75\",\"_id\":\"c1c9241\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"md\",\"button_width\":\"25\",\"button_icon\":\"fa fa-arrow-right\",\"button_icon_align\":\"right\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"selected_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_button_icon\":\"1\"},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=text\",\"label_typography_typography\":\"globals\\/typography?id=text\",\"field_text_color\":\"globals\\/colors?id=text\",\"field_typography_typography\":\"globals\\/typography?id=text\",\"field_background_color\":\"globals\\/colors?id=f898f31\",\"field_border_color\":\"globals\\/colors?id=0d046a4\",\"button_typography_typography\":\"globals\\/typography?id=accent\",\"button_background_color\":\"globals\\/colors?id=accent\",\"previous_button_background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=f898f31\",\"previous_button_text_color\":\"globals\\/colors?id=f898f31\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_color\":\"globals\\/colors?id=f898f31\",\"message_typography_typography\":\"globals\\/typography?id=text\",\"success_message_color\":\"globals\\/colors?id=text\",\"error_message_color\":\"globals\\/colors?id=text\",\"inline_message_color\":\"globals\\/colors?id=text\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3e47e593\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_color\":\"rgba(159,163,173,0.2)\",\"arrow\":\"fa fa-arrow-left\",\"borders_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"borders_spacing\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"__globals__\":{\"label_color\":\"globals\\/colors?id=primary\",\"label_typography_typography\":\"globals\\/typography?id=cdaaf6a\",\"text_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"arrow_color\":\"globals\\/colors?id=primary\",\"sep_color\":\"globals\\/colors?id=0d046a4\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"5ca868ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"More To Explore\",\"align_mobile\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=f8a9e51\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1fc46ebb\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"2\",\"classic_posts_per_page\":\"2\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"posts_include\":[],\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#000000\",\"pagination_hover_color\":\"#00ce1b\",\"pagination_active_color\":\"#00ce1b\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_skin\":\"cards\",\"cards_columns\":\"2\",\"cards_posts_per_page\":\"2\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"cards_meta_data\":[\"author\",\"date\"],\"cards_show_read_more\":\"\",\"cards_show_avatar\":\"\",\"classic_alignment\":\"center\",\"cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"cards_alignment\":\"center\",\"cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_card_padding\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_badge_position\":\"left\",\"cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_thumbnail_size_size\":\"full\",\"__globals__\":{\"cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"cards_badge_color\":\"globals\\/colors?id=f898f31\",\"cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"cards_title_color\":\"globals\\/colors?id=primary\",\"cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"cards_meta_color\":\"globals\\/colors?id=text\",\"cards_meta_separator_color\":\"globals\\/colors?id=text\",\"cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"cards_excerpt_color\":\"globals\\/colors?id=text\",\"cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"cards_meta_border_color\":\"globals\\/colors?id=0d046a4\"},\"load_more_spinner\":{\"value\":\"fas fa-spinner\",\"library\":\"fa-solid\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"ba3d9d7\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"665\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":29,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/CTA-Shapes.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"center left\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_top\":\"waves\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"230\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"CTA\",\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"64427ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Content Column\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"617265a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do You Want To Boost Your Business?\",\"align\":\"left\",\"align_mobile\":\"center\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29bc6512\",\"elType\":\"widget\",\"settings\":{\"title\":\"drop us a line and keep in touch\",\"align\":\"left\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0c23da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/marketing-digital-agency\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=f898f31\",\"hover_color\":\"globals\\/colors?id=f898f31\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"},{\"id\":\"32760794\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Image Column\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"99bfc5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/CTA-post.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"right\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("958","197","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("959","197","_elementor_conditions","a:1:{i:0;s:21:\"include/singular/post\";}");
INSERT INTO 7ja_postmeta VALUES("960","197","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("962","198","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("963","198","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("964","198","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("965","198","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("966","198","_elementor_data","[{\"id\":\"3ef6e389\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":32,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/News-Hero-Bg.png\"},\"background_overlay_position\":\"center left\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"Hero\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"background_overlay_position_tablet\":\"center left\",\"background_overlay_position_mobile\":\"center left\",\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5d3df221\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1b410846\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"archive-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=2c11d45\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"theme-archive-title\"},{\"id\":\"15a97829\",\"elType\":\"widget\",\"settings\":{\"title\":\"Take a break and read all about it\",\"align_mobile\":\"center\",\"align\":\"center\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4710bd78\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb84173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"45e56de5\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"archive_cards\",\"archive_classic_meta_separator\":\"\\/\\/\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"load_more_spinner\":{\"value\":\"fas fa-spinner\",\"library\":\"fa-solid\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"40e4826e\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"665\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":29,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/CTA-Shapes.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"center left\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_top\":\"waves\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"230\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"CTA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7a58746c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Content Column\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"2dc3cac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do You Want To Boost Your Business?\",\"align\":\"left\",\"align_mobile\":\"center\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f889a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"drop us a line and keep in touch\",\"align\":\"left\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c5ff355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/marketing-digital-agency\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=f898f31\",\"hover_color\":\"globals\\/colors?id=f898f31\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"},{\"id\":\"43ff9c1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Image Column\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"153cf782\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/CTA-News.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"right\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("967","198","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("968","198","_elementor_conditions","a:1:{i:0;s:15:\"include/archive\";}");
INSERT INTO 7ja_postmeta VALUES("969","198","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("1048","206","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("1049","206","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("1050","206","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("1051","206","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("1052","206","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("1053","206","_elementor_data","[{\"id\":\"35963869\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8436134\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"629fa6ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:paragraph --><\\/p>\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl. Mauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Nulla euismod a mi eu elementum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet velit gravida tempor et quis mauris. Vestibulum fermentum est nulla, a accumsan libero ultrices nec.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Etiam erat quam, pellentesque in maximus vitae, sollicitudin sed dui. Fusce blandit turpis nec aliquam pharetra. Suspendisse imperdiet molestie imperdiet. Pellentesque imperdiet magna tincidunt, ultricies tellus at, aliquet sapien.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p><strong>Class aptent taciti socios<br><\\/strong>Lkad litora torquent per conubia nostra, per inceptos himenaeos. Praesent ut libero a ipsum aliquam accumsan. Maecenas ut arcu in justo euismod auctor. Donec facilisis efficitur ante a suscipit. Mauris maximus eu odio ac euismod. Maecenas faucibus turpis sed posuere volutpat. Sed tincidunt luctus massa ac aliquam. Integer tincidunt purus et diam dapibus, a rhoncus magna congue. Ut ut turpis suscipit massa mollis gravida. Proin ut dui in libero aliquet semper.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p><strong>Morbi a felis sapien<\\/strong><br>bibendum hendrerit elit, vitae posuere sem pharetra nec. Morbi suscipit suscipit luctus. Morbi posuere augue eu tristique mollis. Suspendisse fringilla venenatis placerat. Nunc id sapien pretium urna bibendum consectetur. Quisque blandit metus arcu, id ornare magna molestie nec. Proin malesuada a lacus nec mollis. Aliquam pellentesque purus ac nibh pharetra gravida.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Vestibulum quis elit rhoncus, ultricies dolor at, gravida orci. Curabitur ut luctus felis. Sed suscipit ut velit sit amet semper. Donec lorem sem, feugiat eget laoreet in, semper non elit. Ut accumsan lacus eu tellus venenatis tincidunt. Suspendisse at mauris.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Nulla vel ante eu leo rhoncus condimentum vitae et elit. Etiam vitae elementum orci. Aliquam quam turpis, malesuada non ultrices ac, mollis ut dui. Donec eu nisl ut sapien feugiat accumsan ut eget ligula. Phasellus pharetra gravida est id pellentesque. Aliquam erat volutpat. Phasellus venenatis ipsum ac metus sagittis bibendum.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>In sed rutrum magna. Nullam euismod metus ac sagittis viverra. Vivamus posuere vehicula risus a eleifend. Sed vel metus lacus. In hac habitasse platea dictumst. Morbi lacinia fermentum mi eget auctor. Aenean vehicula odio justo, ut gravida ex porttitor eu. Fusce sed blandit mauris, in tempus nisl. Sed rutrum elit non ante rhoncus, vel luctus neque pretium.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p><strong>Cras nec magna nec neque pulvinar commodo.<\\/strong><br>Duis libero mauris, elementum et dui vitae, malesuada egestas nisi. Maecenas dignissim consequat tellus quis dignissim. Ut ac convallis tellus, semper sodales erat. Nam ac nunc blandit, volutpat nunc a, accumsan velit. Praesent tincidunt purus iaculis diam posuere, at condimentum urna imperdiet. Nam sit amet pulvinar massa, id hendrerit ante. Vestibulum tellus tellus, eleifend nec placerat tempus, tincidunt at orci. Morbi mollis, justo aliquam venenatis euismod, diam ante sollicitudin lacus, ac fermentum sapien velit quis magna. Integer rutrum lacinia ullamcorper. Vivamus sit amet bibendum augue, non luctus diam. Cras nisi est, ultricies eget ipsum ut, viverra facilisis tortor.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\",\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("1054","206","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("1056","206","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("1058","63","_elementor_controls_usage","a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("1178","9","_edit_lock","1674833848:1");
INSERT INTO 7ja_postmeta VALUES("1208","221","_wp_attached_file","2022/11/Latitude-Logo.webp");
INSERT INTO 7ja_postmeta VALUES("1209","221","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:399;s:4:\"file\";s:26:\"2022/11/Latitude-Logo.webp\";s:8:\"filesize\";i:8522;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Latitude-Logo-300x117.webp\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5038;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Latitude-Logo-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Latitude-Logo-768x299.webp\";s:5:\"width\";i:768;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13204;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("1212","169","_edit_lock","1713281777:1");
INSERT INTO 7ja_postmeta VALUES("1223","223","_wp_attached_file","2022/11/IMG_0885.jpg");
INSERT INTO 7ja_postmeta VALUES("1224","223","_wp_attachment_metadata","a:6:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2022/11/IMG_0885.jpg\";s:8:\"filesize\";i:88578;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_0885-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_0885-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8184;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 11 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592655097\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.71\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.020833333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("1271","227","_wp_attached_file","2022/11/Nicole.jpg");
INSERT INTO 7ja_postmeta VALUES("1272","227","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1512;s:6:\"height\";i:2016;s:4:\"file\";s:18:\"2022/11/Nicole.jpg\";s:8:\"filesize\";i:289870;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Nicole-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18144;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"Nicole-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141642;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Nicole-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7305;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Nicole-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141642;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"Nicole-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:275934;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("1369","238","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("1370","238","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("1371","238","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("1372","238","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("1373","238","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("1374","238","_elementor_page_settings","a:18:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:13:\"custom_colors\";a:6:{i:0;a:3:{s:3:\"_id\";s:7:\"f898f31\";s:5:\"title\";s:13:\"White Element\";s:5:\"color\";s:7:\"#FFFEFE\";}i:1;a:3:{s:3:\"_id\";s:7:\"0d046a4\";s:5:\"title\";s:17:\"Dark Grey Element\";s:5:\"color\";s:7:\"#E9E9E9\";}i:2;a:3:{s:3:\"_id\";s:7:\"c6c574f\";s:5:\"title\";s:13:\"Light Grey BG\";s:5:\"color\";s:7:\"#F9F9F9\";}i:3;a:3:{s:3:\"_id\";s:7:\"7ad78f4\";s:5:\"title\";s:16:\"White Overlay BG\";s:5:\"color\";s:9:\"#FFFFFFE6\";}i:4;a:3:{s:3:\"_id\";s:7:\"8630d9f\";s:5:\"title\";s:17:\"Full Transparency\";s:5:\"color\";s:9:\"#7E222200\";}i:5;a:3:{s:3:\"_id\";s:7:\"b500f0a\";s:5:\"title\";s:8:\"White BG\";s:5:\"color\";s:7:\"#FFFFFF\";}}s:17:\"system_typography\";a:4:{i:0;a:10:{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:12:\"Varela Round\";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:45;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;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:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.4\";s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:10:\"Montserrat\";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:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;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:\"#4632DA\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#3D4459\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#353535\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#06D9FA\";}}s:17:\"custom_typography\";a:8:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:3:\"_id\";s:7:\"6ed476c\";s:5:\"title\";s:10:\"Subheading\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"9525bd0\";s:5:\"title\";s:22:\"Testimonials & Excerpt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"cdaaf6a\";s:5:\"title\";s:13:\"Medium Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:3;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"0009af8\";s:5:\"title\";s:12:\"Small Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:3:\"_id\";s:7:\"ef2c50b\";s:5:\"title\";s:10:\"Menu Links\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"f8a9e51\";s:5:\"title\";s:11:\"Large Title\";}i:6;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"70\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ccc280a\";s:5:\"title\";s:16:\"Popup Main Title\";}i:7;a:10:{s:3:\"_id\";s:7:\"2c11d45\";s:5:\"title\";s:15:\"Hero Main Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"45\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1400\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:2:{s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=f898f31\";s:21:\"body_background_color\";s:25:\"globals/colors?id=b500f0a\";}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}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\";s:1:\"1\";}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}s:26:\"body_background_background\";s:7:\"classic\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:25:\"mobile_browser_background\";s:7:\"#FFFFFF\";s:18:\"lightbox_title_src\";s:0:\"\";s:9:\"site_name\";s:30:\"Creation Starts at Latitude 39\";}");
INSERT INTO 7ja_postmeta VALUES("1376","9","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("1377","239","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("1378","239","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("1379","239","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("1380","239","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("1381","239","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("1382","239","_elementor_page_settings","a:20:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:13:\"custom_colors\";a:6:{i:0;a:3:{s:3:\"_id\";s:7:\"f898f31\";s:5:\"title\";s:13:\"White Element\";s:5:\"color\";s:7:\"#FFFEFE\";}i:1;a:3:{s:3:\"_id\";s:7:\"0d046a4\";s:5:\"title\";s:17:\"Dark Grey Element\";s:5:\"color\";s:7:\"#E9E9E9\";}i:2;a:3:{s:3:\"_id\";s:7:\"c6c574f\";s:5:\"title\";s:13:\"Light Grey BG\";s:5:\"color\";s:7:\"#F9F9F9\";}i:3;a:3:{s:3:\"_id\";s:7:\"7ad78f4\";s:5:\"title\";s:16:\"White Overlay BG\";s:5:\"color\";s:9:\"#FFFFFFE6\";}i:4;a:3:{s:3:\"_id\";s:7:\"8630d9f\";s:5:\"title\";s:17:\"Full Transparency\";s:5:\"color\";s:9:\"#7E222200\";}i:5;a:3:{s:3:\"_id\";s:7:\"b500f0a\";s:5:\"title\";s:8:\"White BG\";s:5:\"color\";s:7:\"#FFFFFF\";}}s:17:\"system_typography\";a:4:{i:0;a:10:{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:12:\"Varela Round\";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:45;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;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:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.4\";s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:10:\"Montserrat\";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:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;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:\"#4632DA\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#3D4459\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#353535\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#06D9FA\";}}s:17:\"custom_typography\";a:8:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:3:\"_id\";s:7:\"6ed476c\";s:5:\"title\";s:10:\"Subheading\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"9525bd0\";s:5:\"title\";s:22:\"Testimonials & Excerpt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"cdaaf6a\";s:5:\"title\";s:13:\"Medium Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:3;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"0009af8\";s:5:\"title\";s:12:\"Small Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:3:\"_id\";s:7:\"ef2c50b\";s:5:\"title\";s:10:\"Menu Links\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"f8a9e51\";s:5:\"title\";s:11:\"Large Title\";}i:6;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"70\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ccc280a\";s:5:\"title\";s:16:\"Popup Main Title\";}i:7;a:10:{s:3:\"_id\";s:7:\"2c11d45\";s:5:\"title\";s:15:\"Hero Main Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"45\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1400\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:2:{s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=f898f31\";s:21:\"body_background_color\";s:25:\"globals/colors?id=b500f0a\";}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}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\";s:1:\"1\";}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}s:26:\"body_background_background\";s:7:\"classic\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:25:\"mobile_browser_background\";s:7:\"#FFFFFF\";s:18:\"lightbox_title_src\";s:0:\"\";s:9:\"site_name\";s:20:\"Latitude 39 Creative\";s:16:\"site_description\";s:30:\"Creation Starts At Latitude 39\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}");
INSERT INTO 7ja_postmeta VALUES("1384","239","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("1385","9","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("1386","240","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("1387","240","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("1388","240","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("1389","240","_elementor_pro_version","3.8.1");
INSERT INTO 7ja_postmeta VALUES("1390","240","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("1391","240","_elementor_page_settings","a:20:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:13:\"custom_colors\";a:6:{i:0;a:3:{s:3:\"_id\";s:7:\"f898f31\";s:5:\"title\";s:13:\"White Element\";s:5:\"color\";s:7:\"#FFFEFE\";}i:1;a:3:{s:3:\"_id\";s:7:\"0d046a4\";s:5:\"title\";s:17:\"Dark Grey Element\";s:5:\"color\";s:7:\"#E9E9E9\";}i:2;a:3:{s:3:\"_id\";s:7:\"c6c574f\";s:5:\"title\";s:13:\"Light Grey BG\";s:5:\"color\";s:7:\"#F9F9F9\";}i:3;a:3:{s:3:\"_id\";s:7:\"7ad78f4\";s:5:\"title\";s:16:\"White Overlay BG\";s:5:\"color\";s:9:\"#FFFFFFE6\";}i:4;a:3:{s:3:\"_id\";s:7:\"8630d9f\";s:5:\"title\";s:17:\"Full Transparency\";s:5:\"color\";s:9:\"#7E222200\";}i:5;a:3:{s:3:\"_id\";s:7:\"b500f0a\";s:5:\"title\";s:8:\"White BG\";s:5:\"color\";s:7:\"#FFFFFF\";}}s:17:\"system_typography\";a:4:{i:0;a:10:{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:12:\"Varela Round\";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:45;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;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:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.4\";s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:10:\"Montserrat\";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:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;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:\"#4632DA\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#3D4459\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#353535\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#06D9FA\";}}s:17:\"custom_typography\";a:8:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:3:\"_id\";s:7:\"6ed476c\";s:5:\"title\";s:10:\"Subheading\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"9525bd0\";s:5:\"title\";s:22:\"Testimonials & Excerpt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"cdaaf6a\";s:5:\"title\";s:13:\"Medium Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:3;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"0009af8\";s:5:\"title\";s:12:\"Small Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:3:\"_id\";s:7:\"ef2c50b\";s:5:\"title\";s:10:\"Menu Links\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"f8a9e51\";s:5:\"title\";s:11:\"Large Title\";}i:6;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"70\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ccc280a\";s:5:\"title\";s:16:\"Popup Main Title\";}i:7;a:10:{s:3:\"_id\";s:7:\"2c11d45\";s:5:\"title\";s:15:\"Hero Main Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"45\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1400\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:2:{s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=f898f31\";s:21:\"body_background_color\";s:25:\"globals/colors?id=b500f0a\";}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}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\";s:1:\"1\";}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}s:26:\"body_background_background\";s:7:\"classic\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:25:\"mobile_browser_background\";s:7:\"#FFFFFF\";s:18:\"lightbox_title_src\";s:0:\"\";s:9:\"site_name\";s:20:\"Latitude 39 Creative\";s:16:\"site_description\";s:30:\"Creation Starts At Latitude 39\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}");
INSERT INTO 7ja_postmeta VALUES("1392","240","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("1393","240","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("1394","241","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("1395","241","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("1396","241","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("1397","241","_elementor_pro_version","3.8.1");
INSERT INTO 7ja_postmeta VALUES("1398","241","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("1399","241","_elementor_page_settings","a:20:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:13:\"custom_colors\";a:6:{i:0;a:3:{s:3:\"_id\";s:7:\"f898f31\";s:5:\"title\";s:13:\"White Element\";s:5:\"color\";s:7:\"#FFFEFE\";}i:1;a:3:{s:3:\"_id\";s:7:\"0d046a4\";s:5:\"title\";s:17:\"Dark Grey Element\";s:5:\"color\";s:7:\"#E9E9E9\";}i:2;a:3:{s:3:\"_id\";s:7:\"c6c574f\";s:5:\"title\";s:13:\"Light Grey BG\";s:5:\"color\";s:7:\"#F9F9F9\";}i:3;a:3:{s:3:\"_id\";s:7:\"7ad78f4\";s:5:\"title\";s:16:\"White Overlay BG\";s:5:\"color\";s:9:\"#FFFFFFE6\";}i:4;a:3:{s:3:\"_id\";s:7:\"8630d9f\";s:5:\"title\";s:17:\"Full Transparency\";s:5:\"color\";s:9:\"#7E222200\";}i:5;a:3:{s:3:\"_id\";s:7:\"b500f0a\";s:5:\"title\";s:8:\"White BG\";s:5:\"color\";s:7:\"#FFFFFF\";}}s:17:\"system_typography\";a:4:{i:0;a:10:{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:12:\"Varela Round\";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:45;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;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:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.4\";s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:10:\"Montserrat\";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:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;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:\"#4632DA\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#3D4459\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#353535\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#06D9FA\";}}s:17:\"custom_typography\";a:8:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:3:\"_id\";s:7:\"6ed476c\";s:5:\"title\";s:10:\"Subheading\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"9525bd0\";s:5:\"title\";s:22:\"Testimonials & Excerpt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"cdaaf6a\";s:5:\"title\";s:13:\"Medium Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:3;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"0009af8\";s:5:\"title\";s:12:\"Small Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:3:\"_id\";s:7:\"ef2c50b\";s:5:\"title\";s:10:\"Menu Links\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"f8a9e51\";s:5:\"title\";s:11:\"Large Title\";}i:6;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"70\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ccc280a\";s:5:\"title\";s:16:\"Popup Main Title\";}i:7;a:10:{s:3:\"_id\";s:7:\"2c11d45\";s:5:\"title\";s:15:\"Hero Main Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"45\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1400\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:2:{s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=f898f31\";s:21:\"body_background_color\";s:25:\"globals/colors?id=b500f0a\";}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}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\";s:1:\"1\";}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}s:26:\"body_background_background\";s:7:\"classic\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:25:\"mobile_browser_background\";s:7:\"#FFFFFF\";s:18:\"lightbox_title_src\";s:0:\"\";s:9:\"site_name\";s:20:\"Latitude 39 Creative\";s:16:\"site_description\";s:30:\"Creation Starts At Latitude 39\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}");
INSERT INTO 7ja_postmeta VALUES("1400","241","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("1401","241","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("1451","169","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("1452","147","_edit_lock","1703969052:1");
INSERT INTO 7ja_postmeta VALUES("1494","147","_yoast_wpseo_content_score","90");
INSERT INTO 7ja_postmeta VALUES("1495","147","_yoast_wpseo_estimated-reading-time-minutes","1");
INSERT INTO 7ja_postmeta VALUES("1590","147","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("1591","103","_edit_lock","1713362530:1");
INSERT INTO 7ja_postmeta VALUES("1629","103","_yoast_wpseo_content_score","90");
INSERT INTO 7ja_postmeta VALUES("1630","103","_yoast_wpseo_estimated-reading-time-minutes","3");
INSERT INTO 7ja_postmeta VALUES("1632","103","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("1643","103","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("1644","103","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("1756","169","_yoast_wpseo_content_score","90");
INSERT INTO 7ja_postmeta VALUES("1757","169","_yoast_wpseo_estimated-reading-time-minutes","6");
INSERT INTO 7ja_postmeta VALUES("1896","192","_wp_old_date","2022-11-12");
INSERT INTO 7ja_postmeta VALUES("1897","189","_wp_old_date","2022-11-12");
INSERT INTO 7ja_postmeta VALUES("1898","193","_wp_old_date","2022-11-12");
INSERT INTO 7ja_postmeta VALUES("1899","190","_wp_old_date","2022-11-12");
INSERT INTO 7ja_postmeta VALUES("1900","287","_edit_lock","1713280315:1");
INSERT INTO 7ja_postmeta VALUES("1901","287","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("1902","287","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("1903","287","_yoast_wpseo_estimated-reading-time-minutes","1");
INSERT INTO 7ja_postmeta VALUES("1904","287","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("1905","287","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("1906","287","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("1907","287","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("1908","287","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("1917","287","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("1918","287","_elementor_data","[{\"id\":\"7ed92ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_attachment\":\"fixed\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32865f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5f9ec7da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Contact {{Us}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41d3975d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"340980a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a1519cc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"4a4f2b8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7268ac59\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4d3c36b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1a914857\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1fd05600\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"helloben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:helloben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("1926","287","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("1951","294","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("1952","294","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("1953","294","_menu_item_object_id","169");
INSERT INTO 7ja_postmeta VALUES("1954","294","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("1955","294","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("1956","294","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("1957","294","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("1958","294","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("1978","297","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("1979","297","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("1980","297","_menu_item_object_id","103");
INSERT INTO 7ja_postmeta VALUES("1981","297","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("1982","297","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("1983","297","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("1984","297","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("1985","297","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("1987","298","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("1988","298","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("1989","298","_menu_item_object_id","131");
INSERT INTO 7ja_postmeta VALUES("1990","298","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("1991","298","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("1992","298","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("1993","298","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("1994","298","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("2039","131","_edit_lock","1713281745:1");
INSERT INTO 7ja_postmeta VALUES("2080","131","_yoast_wpseo_content_score","90");
INSERT INTO 7ja_postmeta VALUES("2081","131","_yoast_wpseo_estimated-reading-time-minutes","2");
INSERT INTO 7ja_postmeta VALUES("2096","18","_edit_lock","1713281107:1");
INSERT INTO 7ja_postmeta VALUES("2138","131","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("2139","3","_edit_lock","1670538443:1");
INSERT INTO 7ja_postmeta VALUES("2140","3","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("2141","3","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("2142","3","_yoast_wpseo_content_score","30");
INSERT INTO 7ja_postmeta VALUES("2143","3","_yoast_wpseo_estimated-reading-time-minutes","3");
INSERT INTO 7ja_postmeta VALUES("2144","3","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("2155","314","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("2156","314","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("2157","314","_menu_item_object_id","3");
INSERT INTO 7ja_postmeta VALUES("2158","314","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("2159","314","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("2160","314","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("2161","314","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("2162","314","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("2164","315","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2165","315","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("2166","315","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2167","315","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("2168","315","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("2169","315","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("2170","315","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("2171","315","_elementor_data","[{\"id\":\"53429895\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"25d30b5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4c37edfd\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"42f2cabb\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"198f102\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"7576a785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"31955ad9\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"5ba79301\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7e2c037a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"75d7ba95\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2a2a5466\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"+(827) 123 - 456 - 7891\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6561909c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Mail Us\",\"description_text\":\"info@evaniayogastudio.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("2172","315","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("2173","315","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("2174","315","_edit_lock","1699922897:1");
INSERT INTO 7ja_postmeta VALUES("2175","315","_yoast_wpseo_content_score","90");
INSERT INTO 7ja_postmeta VALUES("2176","315","_yoast_wpseo_estimated-reading-time-minutes","1");
INSERT INTO 7ja_postmeta VALUES("2177","315","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("2180","315","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("2181","315","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("2193","317","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("2194","317","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("2195","317","_menu_item_object_id","315");
INSERT INTO 7ja_postmeta VALUES("2196","317","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("2197","317","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("2198","317","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("2199","317","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("2200","317","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("2202","318","_menu_item_type","post_type");
INSERT INTO 7ja_postmeta VALUES("2203","318","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("2204","318","_menu_item_object_id","315");
INSERT INTO 7ja_postmeta VALUES("2205","318","_menu_item_object","page");
INSERT INTO 7ja_postmeta VALUES("2206","318","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("2207","318","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("2208","318","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("2209","318","_menu_item_url","");
INSERT INTO 7ja_postmeta VALUES("2218","24","_edit_lock","1676434212:1");
INSERT INTO 7ja_postmeta VALUES("2219","319","_edit_lock","1676436143:1");
INSERT INTO 7ja_postmeta VALUES("2220","319","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("2223","319","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("2225","319","_yoast_wpseo_content_score","60");
INSERT INTO 7ja_postmeta VALUES("2226","319","_yoast_wpseo_estimated-reading-time-minutes","3");
INSERT INTO 7ja_postmeta VALUES("2227","319","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("2228","319","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2229","319","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("2230","319","_elementor_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2231","319","_elementor_pro_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2233","321","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2234","321","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("2235","321","_elementor_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2236","321","_elementor_pro_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2237","322","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2238","322","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("2239","322","_elementor_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2240","322","_elementor_pro_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2241","319","_wp_page_template","");
INSERT INTO 7ja_postmeta VALUES("2242","319","_elementor_data","[{\"id\":\"6a00c3c\",\"elType\":\"section\",\"settings\":{\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4e48f28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65974751\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:paragraph -->\\n<p>I\\u2019m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn\\u2019t start art projects, design projects, or my business, for that matter, because of the fear of failing.\\u00a0<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had \\u201cbuilt\\u201d. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\\\"https:\\/\\/www.jamesvictore.com\\/\\\">James Victore<\\/a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\\\"https:\\/\\/www.amazon.com\\/Feck-Perfuction-Dangerous-Ideas-Business\\/dp\\/1452166366\\\">\\u201cFECK PERFUCTION!\\u201d<\\/a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure!\\u00a0<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Making room for failure and imperfection has been liberating for me as an artist. It\\u2019s like having a hall pass to explore, play, and produce amazing work.&nbsp;<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today.\\u00a0<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list {\\\"ordered\\\":true} -->\\n<ol><!-- wp:list-item -->\\n<li><strong>Practicing Gratitude<\\/strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\\\"https:\\/\\/www.amazon.com\\/Gratitude-Journal-gratitude-mindfulness-productivity\\/dp\\/108063133X\\/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\\\">https:\\/\\/www.amazon.com\\/Gratitude-Journal-gratitude-mindfulness-productivity\\/dp\\/108063133X\\/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7<\\/a><\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list {\\\"ordered\\\":true,\\\"start\\\":2} -->\\n<ol start=\\\"2\\\"><!-- wp:list-item -->\\n<li><strong>Practice Imperfection<\\/strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn\\u2019t erase over and over again. Or leaning into a design project that wasn\\u2019t perfect, and reminding myself to keep going. That was huge for me. The idea of, \\u201ckeep moving forward\\u201d no matter if the project, presentation, etc. didn\\u2019t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn\\u2019t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward.\\u00a0<\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list {\\\"ordered\\\":true,\\\"start\\\":3} -->\\n<ol start=\\\"3\\\"><!-- wp:list-item -->\\n<li><strong>Practice kindness<\\/strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don\\u2019t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don\\u2019t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals.\\u00a0<\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You\\u2019ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.<\\/p>\\n<!-- \\/wp:paragraph -->\",\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("2243","323","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2244","323","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("2245","323","_elementor_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2246","323","_elementor_pro_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2247","323","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("2248","323","_elementor_data","[{\"id\":\"6a00c3c\",\"elType\":\"section\",\"settings\":{\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4e48f28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65974751\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:paragraph -->\\n<p>I\\u2019m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn\\u2019t start art projects, design projects, or my business, for that matter, because of the fear of failing.\\u00a0<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had \\u201cbuilt\\u201d. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\\\"https:\\/\\/www.jamesvictore.com\\/\\\">James Victore<\\/a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\\\"https:\\/\\/www.amazon.com\\/Feck-Perfuction-Dangerous-Ideas-Business\\/dp\\/1452166366\\\">\\u201cFECK PERFUCTION!\\u201d<\\/a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure!\\u00a0<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Making room for failure and imperfection has been liberating for me as an artist. It\\u2019s like having a hall pass to explore, play, and produce amazing work.&nbsp;<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today.\\u00a0<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list {\\\"ordered\\\":true} -->\\n<ol><!-- wp:list-item -->\\n<li><strong>Practicing Gratitude<\\/strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\\\"https:\\/\\/www.amazon.com\\/Gratitude-Journal-gratitude-mindfulness-productivity\\/dp\\/108063133X\\/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\\\">https:\\/\\/www.amazon.com\\/Gratitude-Journal-gratitude-mindfulness-productivity\\/dp\\/108063133X\\/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7<\\/a><\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list {\\\"ordered\\\":true,\\\"start\\\":2} -->\\n<ol start=\\\"2\\\"><!-- wp:list-item -->\\n<li><strong>Practice Imperfection<\\/strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn\\u2019t erase over and over again. Or leaning into a design project that wasn\\u2019t perfect, and reminding myself to keep going. That was huge for me. The idea of, \\u201ckeep moving forward\\u201d no matter if the project, presentation, etc. didn\\u2019t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn\\u2019t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward.\\u00a0<\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list {\\\"ordered\\\":true,\\\"start\\\":3} -->\\n<ol start=\\\"3\\\"><!-- wp:list-item -->\\n<li><strong>Practice kindness<\\/strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don\\u2019t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don\\u2019t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals.\\u00a0<\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You\\u2019ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.<\\/p>\\n<!-- \\/wp:paragraph -->\",\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("2250","319","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("2251","319","_elementor_controls_usage","a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2271","24","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("2272","327","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2273","327","_elementor_template_type","single");
INSERT INTO 7ja_postmeta VALUES("2274","327","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("2275","327","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("2276","327","_elementor_data","[{\"id\":\"36c301aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":25,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Post-BG.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"195\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"Hero\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"72dd433d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3cf2cbc2\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=2c11d45\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"3b923337\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"ede85bd\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"show_icon\":\"none\",\"link\":\"\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"ef11192\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"show_icon\":\"none\",\"link\":\"\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=f898f31\",\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"globals\\/colors?id=f898f31\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"post-info\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1236d9e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Post Content\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4364151e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"71c637bd\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.2)\"},\"align_mobile\":\"center\",\"image\":{\"id\":26,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder-1.png\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"24092ee0\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39c90e20\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%2C%22max_length%22%3A%22%22%7D\\\"]\"},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=9525bd0\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"},{\"id\":\"1534d3ed\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"409e21a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Share Inner Section\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=0d046a4\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79a55826\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"10466370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share This Post\",\"align_mobile\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6ed476c\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"1\"},{\"id\":\"5e3dd8f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6a2e570c\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"7a6ea4f\"},{\"button\":\"linkedin\",\"_id\":\"709faff\"},{\"button\":\"twitter\",\"_id\":\"c0a1579\"},{\"button\":\"email\",\"_id\":\"f5e66bc\"}],\"view\":\"icon\",\"skin\":\"flat\",\"alignment\":\"right\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"button_size\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"icon_size\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"color_source\":\"custom\",\"alignment_mobile\":\"center\",\"__globals__\":{\"secondary_color\":\"globals\\/colors?id=secondary\",\"primary_color\":\"globals\\/colors?id=f898f31\",\"secondary_color_hover\":\"globals\\/colors?id=primary\",\"primary_color_hover\":\"globals\\/colors?id=f898f31\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5ddcd449\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"43a8c094\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"678b7110\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"25\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_overlay_position_mobile\":\"initial\",\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":\"-543\",\"sizes\":[]},\"background_overlay_image\":{\"id\":27,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/BG-Post-Sub.png\"},\"_title\":\"Subscribe Inner Section\",\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=b500f0a\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"31d9f4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":\"\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e422bc4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"align_mobile\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=f8a9e51\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42ec2661\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get updates and learn from the best\",\"align_mobile\":\"center\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1026c911\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1dafd1bc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Enter Your Email\",\"width\":\"75\",\"_id\":\"c1c9241\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"md\",\"button_width\":\"25\",\"button_icon\":\"fa fa-arrow-right\",\"button_icon_align\":\"right\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"selected_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_button_icon\":\"1\"},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=text\",\"label_typography_typography\":\"globals\\/typography?id=text\",\"field_text_color\":\"globals\\/colors?id=text\",\"field_typography_typography\":\"globals\\/typography?id=text\",\"field_background_color\":\"globals\\/colors?id=f898f31\",\"field_border_color\":\"globals\\/colors?id=0d046a4\",\"button_typography_typography\":\"globals\\/typography?id=accent\",\"button_background_color\":\"globals\\/colors?id=accent\",\"previous_button_background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=f898f31\",\"previous_button_text_color\":\"globals\\/colors?id=f898f31\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_color\":\"globals\\/colors?id=f898f31\",\"message_typography_typography\":\"globals\\/typography?id=text\",\"success_message_color\":\"globals\\/colors?id=text\",\"error_message_color\":\"globals\\/colors?id=text\",\"inline_message_color\":\"globals\\/colors?id=text\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"pa_condition_repeater\":[],\"email_to\":\"latitude39creative@gmail.com\",\"email_subject\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_from\":\"email@latitude39creative.com\",\"email_from_name\":\"Latitude 39 Creative\",\"email_to_2\":\"latitude39creative@gmail.com\",\"email_subject_2\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_from_2\":\"email@latitude39creative.com\",\"email_from_name_2\":\"Latitude 39 Creative\",\"email_reply_to_2\":\"latitude39creative@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3e47e593\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_color\":\"rgba(159,163,173,0.2)\",\"arrow\":\"fa fa-arrow-left\",\"borders_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"borders_spacing\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"__globals__\":{\"label_color\":\"globals\\/colors?id=primary\",\"label_typography_typography\":\"globals\\/typography?id=cdaaf6a\",\"text_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"arrow_color\":\"globals\\/colors?id=primary\",\"sep_color\":\"globals\\/colors?id=0d046a4\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"5ca868ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"More To Explore\",\"align_mobile\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=f8a9e51\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1fc46ebb\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"2\",\"classic_posts_per_page\":\"2\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"posts_include\":[],\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#000000\",\"pagination_hover_color\":\"#00ce1b\",\"pagination_active_color\":\"#00ce1b\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_skin\":\"cards\",\"cards_columns\":\"2\",\"cards_posts_per_page\":\"2\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"cards_meta_data\":[\"author\",\"date\"],\"cards_show_read_more\":\"\",\"cards_show_avatar\":\"\",\"classic_alignment\":\"center\",\"cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"cards_alignment\":\"center\",\"cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_card_padding\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_badge_position\":\"left\",\"cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_thumbnail_size_size\":\"full\",\"__globals__\":{\"cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"cards_badge_color\":\"globals\\/colors?id=f898f31\",\"cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"cards_title_color\":\"globals\\/colors?id=primary\",\"cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"cards_meta_color\":\"globals\\/colors?id=text\",\"cards_meta_separator_color\":\"globals\\/colors?id=text\",\"cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"cards_excerpt_color\":\"globals\\/colors?id=text\",\"cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"cards_meta_border_color\":\"globals\\/colors?id=0d046a4\"},\"pa_condition_repeater\":[],\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"ba3d9d7\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"665\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":29,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/CTA-Shapes.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"center left\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_top\":\"waves\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"230\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"CTA\",\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"64427ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Content Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"617265a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do You Want To Boost Your Business?\",\"align\":\"left\",\"align_mobile\":\"center\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29bc6512\",\"elType\":\"widget\",\"settings\":{\"title\":\"drop us a line and keep in touch\",\"align\":\"left\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0c23da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/marketing-digital-agency\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=f898f31\",\"hover_color\":\"globals\\/colors?id=f898f31\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"f7b8861\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"},{\"id\":\"32760794\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Image Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"99bfc5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/CTA-post.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"right\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("2277","327","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("2278","327","_elementor_conditions","a:1:{i:0;s:21:\"include/singular/post\";}");
INSERT INTO 7ja_postmeta VALUES("2279","327","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("2280","327","_elementor_screenshot","a:2:{s:2:\"id\";i:217;s:3:\"url\";s:150:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_24_2022-11-12-00-28-51_62a47327.png\";}");
INSERT INTO 7ja_postmeta VALUES("2281","327","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("2287","31","_edit_lock","1676487335:1");
INSERT INTO 7ja_postmeta VALUES("2293","330","_wp_attached_file","2022/12/Scribble-scaled.jpg");
INSERT INTO 7ja_postmeta VALUES("2294","330","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1712;s:4:\"file\";s:27:\"2022/12/Scribble-scaled.jpg\";s:8:\"filesize\";i:373362;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Scribble-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8142;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Scribble-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74448;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Scribble-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4373;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Scribble-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43793;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"Scribble-1536x1027.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155398;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"Scribble.jpg\";}");
INSERT INTO 7ja_postmeta VALUES("2297","331","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2298","331","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("2299","331","_elementor_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2300","331","_elementor_pro_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("2301","331","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("2302","331","_elementor_data","[{\"id\":\"6a00c3c\",\"elType\":\"section\",\"settings\":{\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4e48f28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65974751\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:paragraph -->\\n<p>I\\u2019m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn\\u2019t start art projects, design projects, or my business, for that matter, because of the fear of failing.\\u00a0<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had \\u201cbuilt\\u201d. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\\\"https:\\/\\/www.jamesvictore.com\\/\\\">James Victore<\\/a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\\\"https:\\/\\/www.amazon.com\\/Feck-Perfuction-Dangerous-Ideas-Business\\/dp\\/1452166366\\\">\\u201cFECK PERFUCTION!\\u201d<\\/a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure!\\u00a0<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Making room for failure and imperfection has been liberating for me as an artist. It\\u2019s like having a hall pass to explore, play, and produce amazing work.&nbsp;<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today.\\u00a0<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list {\\\"ordered\\\":true} -->\\n<ol><!-- wp:list-item -->\\n<li><strong>Practicing Gratitude<\\/strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\\\"https:\\/\\/www.amazon.com\\/Gratitude-Journal-gratitude-mindfulness-productivity\\/dp\\/108063133X\\/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\\\">https:\\/\\/www.amazon.com\\/Gratitude-Journal-gratitude-mindfulness-productivity\\/dp\\/108063133X\\/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7<\\/a><\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list {\\\"ordered\\\":true,\\\"start\\\":2} -->\\n<ol start=\\\"2\\\"><!-- wp:list-item -->\\n<li><strong>Practice Imperfection<\\/strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn\\u2019t erase over and over again. Or leaning into a design project that wasn\\u2019t perfect, and reminding myself to keep going. That was huge for me. The idea of, \\u201ckeep moving forward\\u201d no matter if the project, presentation, etc. didn\\u2019t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn\\u2019t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward.\\u00a0<\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list {\\\"ordered\\\":true,\\\"start\\\":3} -->\\n<ol start=\\\"3\\\"><!-- wp:list-item -->\\n<li><strong>Practice kindness<\\/strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don\\u2019t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don\\u2019t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals.\\u00a0<\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You\\u2019ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.<\\/p>\\n<!-- \\/wp:paragraph -->\",\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("2303","331","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("2304","331","_elementor_controls_usage","a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2306","319","_thumbnail_id","330");
INSERT INTO 7ja_postmeta VALUES("2334","333","_wp_attached_file","2022/12/BFD-main-logo.webp");
INSERT INTO 7ja_postmeta VALUES("2335","333","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:26:\"2022/12/BFD-main-logo.webp\";s:8:\"filesize\";i:108094;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"BFD-main-logo-300x169.webp\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12108;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BFD-main-logo-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9600;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"BFD-main-logo-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:42514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2336","334","_wp_attached_file","2022/12/GW-logo.png");
INSERT INTO 7ja_postmeta VALUES("2337","334","_wp_attachment_metadata","a:6:{s:5:\"width\";i:600;s:6:\"height\";i:110;s:4:\"file\";s:19:\"2022/12/GW-logo.png\";s:8:\"filesize\";i:5976;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"GW-logo-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5321;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"GW-logo-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2541;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2338","335","_wp_attached_file","2022/12/blueprintfinlogo.webp");
INSERT INTO 7ja_postmeta VALUES("2339","335","_wp_attachment_metadata","a:6:{s:5:\"width\";i:642;s:6:\"height\";i:286;s:4:\"file\";s:29:\"2022/12/blueprintfinlogo.webp\";s:8:\"filesize\";i:14226;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"blueprintfinlogo-300x134.webp\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8266;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"blueprintfinlogo-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6104;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2340","336","_wp_attached_file","2022/12/PivotAll_Web-Logo.png");
INSERT INTO 7ja_postmeta VALUES("2341","336","_wp_attachment_metadata","a:6:{s:5:\"width\";i:797;s:6:\"height\";i:172;s:4:\"file\";s:29:\"2022/12/PivotAll_Web-Logo.png\";s:8:\"filesize\";i:7364;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"PivotAll_Web-Logo-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4811;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"PivotAll_Web-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"PivotAll_Web-Logo-768x166.png\";s:5:\"width\";i:768;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13185;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2342","337","_wp_attached_file","2022/12/Markpianoman.png");
INSERT INTO 7ja_postmeta VALUES("2343","337","_wp_attachment_metadata","a:6:{s:5:\"width\";i:460;s:6:\"height\";i:80;s:4:\"file\";s:24:\"2022/12/Markpianoman.png\";s:8:\"filesize\";i:34477;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Markpianoman-300x52.png\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17780;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Markpianoman-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8724;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2439","348","envato_tk_manifest","a:7:{s:16:\"manifest_version\";s:6:\"1.0.21\";s:5:\"title\";s:61:\"Criativo - Creative Agency & Portfolio Elementor Template Kit\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"1.0.1\";s:9:\"templates\";a:17:{i:0;a:8:{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:27:\"https://kfkit.rometheme.pro\";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;}i:1;a:9:{s:4:\"name\";s:10:\"Homepage 1\";s:10:\"screenshot\";s:26:\"screenshots/homepage-1.jpg\";s:6:\"source\";s:25:\"templates/homepage-1.json\";s:11:\"preview_url\";s:61:\"https://kfkit.rometheme.pro/criativo/template-kit/homepage-1/\";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;s:7:\"imports\";a:0:{}}i:2;a:8:{s:4:\"name\";s:10:\"Homepage 2\";s:10:\"screenshot\";s:26:\"screenshots/homepage-2.jpg\";s:6:\"source\";s:25:\"templates/homepage-2.json\";s:11:\"preview_url\";s:61:\"https://kfkit.rometheme.pro/criativo/template-kit/homepage-2/\";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:3;a:9:{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://kfkit.rometheme.pro/criativo/template-kit/794/\";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;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:443;}}}i:4;a:8:{s:4:\"name\";s:8:\"About Me\";s:10:\"screenshot\";s:24:\"screenshots/about-me.jpg\";s:6:\"source\";s:23:\"templates/about-me.json\";s:11:\"preview_url\";s:59:\"https://kfkit.rometheme.pro/criativo/template-kit/about-me/\";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:9:{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:59:\"https://kfkit.rometheme.pro/criativo/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;s:7:\"imports\";a:0:{}}i:6;a:8:{s:4:\"name\";s:8:\"Our Team\";s:10:\"screenshot\";s:24:\"screenshots/our-team.jpg\";s:6:\"source\";s:23:\"templates/our-team.json\";s:11:\"preview_url\";s:59:\"https://kfkit.rometheme.pro/criativo/template-kit/our-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:7;a:8:{s:4:\"name\";s:11:\"Portfolio 1\";s:10:\"screenshot\";s:27:\"screenshots/portfolio-1.jpg\";s:6:\"source\";s:26:\"templates/portfolio-1.json\";s:11:\"preview_url\";s:62:\"https://kfkit.rometheme.pro/criativo/template-kit/portfolio-1/\";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:9:{s:4:\"name\";s:11:\"Portfolio 2\";s:10:\"screenshot\";s:27:\"screenshots/portfolio-2.jpg\";s:6:\"source\";s:26:\"templates/portfolio-2.json\";s:11:\"preview_url\";s:62:\"https://kfkit.rometheme.pro/criativo/template-kit/portfolio-2/\";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;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:659;}}}i:9;a:8:{s:4:\"name\";s:11:\"Portfolio 3\";s:10:\"screenshot\";s:27:\"screenshots/portfolio-3.jpg\";s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:11:\"preview_url\";s:68:\"https://kfkit.rometheme.pro/criativo/template-kit/portfolio-standar/\";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:14:\"Latest Project\";s:10:\"screenshot\";s:30:\"screenshots/latest-project.jpg\";s:6:\"source\";s:29:\"templates/latest-project.json\";s:11:\"preview_url\";s:65:\"https://kfkit.rometheme.pro/criativo/template-kit/latest-project/\";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:11;a:9:{s:4:\"name\";s:14:\"Single Project\";s:10:\"screenshot\";s:30:\"screenshots/single-project.jpg\";s:6:\"source\";s:29:\"templates/single-project.json\";s:11:\"preview_url\";s:65:\"https://kfkit.rometheme.pro/criativo/template-kit/single-project/\";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;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:730;}}}i:12;a:9:{s:4:\"name\";s:11:\"Latest News\";s:10:\"screenshot\";s:27:\"screenshots/latest-news.jpg\";s:6:\"source\";s:26:\"templates/latest-news.json\";s:11:\"preview_url\";s:62:\"https://kfkit.rometheme.pro/criativo/template-kit/latest-news/\";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;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:738;}}}i:13;a:9:{s:4:\"name\";s:12:\"Testimonials\";s:10:\"screenshot\";s:28:\"screenshots/testimonials.jpg\";s:6:\"source\";s:27:\"templates/testimonials.json\";s:11:\"preview_url\";s:63:\"https://kfkit.rometheme.pro/criativo/template-kit/testimonials/\";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;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:537;}}}i:14;a:9:{s:4:\"name\";s:10:\"Contact Us\";s:10:\"screenshot\";s:26:\"screenshots/contact-us.jpg\";s:6:\"source\";s:25:\"templates/contact-us.json\";s:11:\"preview_url\";s:61:\"https://kfkit.rometheme.pro/criativo/template-kit/contact-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;s:7:\"imports\";a:0:{}}i:15;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:57:\"https://kfkit.rometheme.pro/criativo/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:1:{i:0;a:1:{s:20:\"imported_template_id\";i:353;}}}i:16;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:57:\"https://kfkit.rometheme.pro/criativo/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:1:{i:0;a:1:{s:20:\"imported_template_id\";i:604;}}}}s:16:\"required_plugins\";a:4:{i:0;a:4:{s:4:\"name\";s:14:\"Contact Form 7\";s:7:\"version\";s:3:\"5.6\";s:4:\"file\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:6:\"author\";s:16:\"Takayuki Miyoshi\";}i:1;a:4:{s:4:\"name\";s:9:\"Elementor\";s:7:\"version\";s:5:\"3.6.7\";s:4:\"file\";s:23:\"elementor/elementor.php\";s:6:\"author\";s:13:\"Elementor.com\";}i:2;a:4:{s:4:\"name\";s:16:\"ElementsKit Lite\";s:7:\"version\";s:5:\"2.6.2\";s:4:\"file\";s:37:\"elementskit-lite/elementskit-lite.php\";s:6:\"author\";s:5:\"Wpmet\";}i:3;a:4:{s:4:\"name\";s:28:\"PowerPack Lite for Elementor\";s:7:\"version\";s:6:\"2.6.16\";s:4:\"file\";s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";s:6:\"author\";s:17:\"IdeaBox Creations\";}}s:6:\"images\";a:52:{i:0;a:8:{s:8:\"filename\";s:53:\"portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\";s:13:\"thumbnail_url\";s:133:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}}s:8:\"filesize\";i:226310;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-P7ZSU5P\";}i:1;a:8:{s:8:\"filename\";s:20:\"6-Brand-Identity.png\";s:13:\"thumbnail_url\";s:92:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/6-Brand-Identity.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}}s:8:\"filesize\";i:12406;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:2;a:8:{s:8:\"filename\";s:16:\"5-Web-Design.png\";s:13:\"thumbnail_url\";s:88:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/5-Web-Design.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}}s:8:\"filesize\";i:10764;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:3;a:8:{s:8:\"filename\";s:11:\"1-Ui-Ux.png\";s:13:\"thumbnail_url\";s:83:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/1-Ui-Ux.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}}s:8:\"filesize\";i:9841;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:4;a:8:{s:8:\"filename\";s:21:\"4-Video-Marketing.png\";s:13:\"thumbnail_url\";s:93:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/4-Video-Marketing.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}}s:8:\"filesize\";i:12142;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:5;a:8:{s:8:\"filename\";s:14:\"Untitled-1.png\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/Untitled-1.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:252707;s:10:\"dimensions\";a:2:{i:0;i:498;i:1;i:647;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/dj-girl-drink-fresh-smoothie-minimal-aesthetic-mon-KUGZXA8\";}i:6;a:8:{s:8:\"filename\";s:14:\"Clean-Code.png\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/Clean-Code.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}}s:8:\"filesize\";i:17868;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:7;a:8:{s:8:\"filename\";s:17:\"Modern-Design.png\";s:13:\"thumbnail_url\";s:89:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/Modern-Design.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}}s:8:\"filesize\";i:12416;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:8;a:8:{s:8:\"filename\";s:5:\"1.jpg\";s:13:\"thumbnail_url\";s:85:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/1-800x450.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:188359;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1080;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:78:\"https://elements.envato.com/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ\";}i:9;a:8:{s:8:\"filename\";s:19:\"10-Project-Done.png\";s:13:\"thumbnail_url\";s:91:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/10-Project-Done.png\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}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/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:9604;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:10;a:8:{s:8:\"filename\";s:20:\"7-Happy-Costumer.png\";s:13:\"thumbnail_url\";s:92:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/7-Happy-Costumer.png\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}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/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:14248;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:11;a:8:{s:8:\"filename\";s:19:\"8-Award-Winning.png\";s:13:\"thumbnail_url\";s:91:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/8-Award-Winning.png\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}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/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:9154;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:12;a:8:{s:8:\"filename\";s:15:\"9-Team-Crew.png\";s:13:\"thumbnail_url\";s:87:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/9-Team-Crew.png\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}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/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:22645;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:300;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/digital-marketing-line-icons-PA3DSUM\";}i:13;a:8:{s:8:\"filename\";s:6:\"G9.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G9-800x800.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}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:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:3;a:2:{s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:4:\"name\";s:11:\"Portfolio 3\";}i:4;a:2:{s:6:\"source\";s:29:\"templates/latest-project.json\";s:4:\"name\";s:14:\"Latest Project\";}}s:8:\"filesize\";i:98410;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:900;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/vanilla-mint-dj-girl-monochrome-party-colours-styl-QH4DLNU\";}i:14;a:8:{s:8:\"filename\";s:6:\"G5.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G5-800x800.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}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:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:3;a:2:{s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:4:\"name\";s:11:\"Portfolio 3\";}i:4;a:2:{s:6:\"source\";s:29:\"templates/latest-project.json\";s:4:\"name\";s:14:\"Latest Project\";}}s:8:\"filesize\";i:106520;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:900;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:71:\"https://elements.envato.com/blank-amber-glass-face-serum-bottle-5FUNVGL\";}i:15;a:8:{s:8:\"filename\";s:6:\"G4.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G4-800x800.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}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:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:3;a:2:{s:6:\"source\";s:29:\"templates/latest-project.json\";s:4:\"name\";s:14:\"Latest Project\";}}s:8:\"filesize\";i:102775;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:900;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:70:\"https://elements.envato.com/beautiful-origami-flower-structure-P49X8MZ\";}i:16;a:8:{s:8:\"filename\";s:6:\"G1.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G1-800x800.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}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:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:3;a:2:{s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:4:\"name\";s:11:\"Portfolio 3\";}i:4;a:2:{s:6:\"source\";s:29:\"templates/latest-project.json\";s:4:\"name\";s:14:\"Latest Project\";}}s:8:\"filesize\";i:128413;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:900;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:52:\"https://elements.envato.com/abstract-pattern-PA37PST\";}i:17;a:8:{s:8:\"filename\";s:54:\"side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\";s:13:\"thumbnail_url\";s:134:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ-800x450.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:187822;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1080;}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-CTUMAUJ\";}i:18;a:8:{s:8:\"filename\";s:7:\"1-1.png\";s:13:\"thumbnail_url\";s:79:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/1-1.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:13577;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:115;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:19;a:8:{s:8:\"filename\";s:7:\"1-2.png\";s:13:\"thumbnail_url\";s:79:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/1-2.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:6523;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:115;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:20;a:8:{s:8:\"filename\";s:7:\"1-3.png\";s:13:\"thumbnail_url\";s:79:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/1-3.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:8597;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:115;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:21;a:8:{s:8:\"filename\";s:7:\"1-5.png\";s:13:\"thumbnail_url\";s:79:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/1-5.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:5039;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:115;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:22;a:8:{s:8:\"filename\";s:7:\"1-6.png\";s:13:\"thumbnail_url\";s:79:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/1-6.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:6074;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:115;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:23;a:8:{s:8:\"filename\";s:10:\"apelah.jpg\";s:13:\"thumbnail_url\";s:90:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/apelah-800x450.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}i:2;a:2:{s:6:\"source\";s:29:\"templates/single-project.json\";s:4:\"name\";s:14:\"Single Project\";}}s:8:\"filesize\";i:213753;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1080;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/shooting-studio-for-photographer-and-creative-art--LPAS85U\";}i:24;a:8:{s:8:\"filename\";s:6:\"11.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/11-800x533.jpg\";s:9:\"templates\";a:6:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}i:4;a:2:{s:6:\"source\";s:29:\"templates/single-project.json\";s:4:\"name\";s:14:\"Single Project\";}i:5;a:2:{s:6:\"source\";s:27:\"templates/testimonials.json\";s:4:\"name\";s:12:\"Testimonials\";}}s:8:\"filesize\";i:207721;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:82:\"https://elements.envato.com/beautiful-asian-japanese-girl-street-portraits-PL9LBJB\";}i:25;a:8:{s:8:\"filename\";s:8:\"Bg-1.jpg\";s:13:\"thumbnail_url\";s:88:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/Bg-1-800x533.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}}s:8:\"filesize\";i:139701;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:86:\"https://elements.envato.com/portrait-of-beautiful-woman-with-sparkles-on-her-f-KXFSW4A\";}i:26;a:8:{s:8:\"filename\";s:6:\"T1.png\";s:13:\"thumbnail_url\";s:78:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/T1.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}}s:8:\"filesize\";i:207892;s:10:\"dimensions\";a:2:{i:0;i:454;i:1;i:406;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:84:\"https://elements.envato.com/portrait-of-handsome-man-against-gray-background-PQEBPX2\";}i:27;a:8:{s:8:\"filename\";s:6:\"T3.png\";s:13:\"thumbnail_url\";s:78:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/T3.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}}s:8:\"filesize\";i:242896;s:10:\"dimensions\";a:2:{i:0;i:499;i:1;i:446;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/portrait-of-young-beautiful-woman-against-gray-bac-BZKUC26\";}i:28;a:8:{s:8:\"filename\";s:6:\"T2.png\";s:13:\"thumbnail_url\";s:78:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/T2.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}}s:8:\"filesize\";i:229843;s:10:\"dimensions\";a:2:{i:0;i:545;i:1;i:487;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:81:\"https://elements.envato.com/young-beautiful-woman-against-gray-background-75CAG68\";}i:29;a:8:{s:8:\"filename\";s:6:\"T4.png\";s:13:\"thumbnail_url\";s:78:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/T4.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}}s:8:\"filesize\";i:249958;s:10:\"dimensions\";a:2:{i:0;i:536;i:1;i:479;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/studio-shot-of-young-handsome-man-against-brown-ba-K7F9HGA\";}i:30;a:8:{s:8:\"filename\";s:6:\"G3.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G3-800x800.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:4:\"name\";s:11:\"Portfolio 3\";}}s:8:\"filesize\";i:63597;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:900;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/angel-statue-minimal-still-life-art-monochrome-tre-H75FPEF\";}i:31;a:8:{s:8:\"filename\";s:6:\"G6.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G6-800x800.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:4:\"name\";s:11:\"Portfolio 3\";}}s:8:\"filesize\";i:110846;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:900;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/face-care-concept-art-minimal-still-life-design-ma-A2YDCEW\";}i:32;a:8:{s:8:\"filename\";s:6:\"G7.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G7-800x800.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:4:\"name\";s:11:\"Portfolio 3\";}}s:8:\"filesize\";i:111013;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:900;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/minimal-aesthetic-fashion-monochrome-design-aqua-m-2GUP9RQ\";}i:33;a:8:{s:8:\"filename\";s:6:\"G8.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G8-800x800.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:4:\"name\";s:11:\"Portfolio 3\";}}s:8:\"filesize\";i:94664;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:900;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/set-moisturizing-cosmetics-on-water-with-drops-gla-V7R3HX7\";}i:34;a:8:{s:8:\"filename\";s:6:\"G2.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G2-800x800.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:4:\"name\";s:11:\"Portfolio 3\";}}s:8:\"filesize\";i:75981;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:900;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/angel-minimal-still-life-art-monochrome-trendy-col-2HCT4XK\";}i:35;a:8:{s:8:\"filename\";s:10:\"adadad.jpg\";s:13:\"thumbnail_url\";s:90:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/adadad-800x533.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:3;a:2:{s:6:\"source\";s:27:\"templates/testimonials.json\";s:4:\"name\";s:12:\"Testimonials\";}}s:8:\"filesize\";i:243682;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:84:\"https://elements.envato.com/futuristic-model-with-violet-hair-trendy-haircut-N8W949C\";}i:36;a:8:{s:8:\"filename\";s:6:\"N1.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/N1-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/latest-news.json\";s:4:\"name\";s:11:\"Latest News\";}}s:8:\"filesize\";i:163554;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/young-businesswoman-in-eyeglasses-using-tablet-whi-UKPLJWW\";}i:37;a:8:{s:8:\"filename\";s:6:\"N2.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/N2-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/latest-news.json\";s:4:\"name\";s:11:\"Latest News\";}}s:8:\"filesize\";i:200465;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:79:\"https://elements.envato.com/group-of-successful-businesswomen-in-office-K6M42WG\";}i:38;a:8:{s:8:\"filename\";s:6:\"N3.jpg\";s:13:\"thumbnail_url\";s:86:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/N3-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/latest-news.json\";s:4:\"name\";s:11:\"Latest News\";}}s:8:\"filesize\";i:146561;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:71:\"https://elements.envato.com/business-partners-working-at-office-5AHGFSJ\";}i:39;a:8:{s:8:\"filename\";s:8:\"bg-2.png\";s:13:\"thumbnail_url\";s:88:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/bg-2-800x533.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-1.json\";s:4:\"name\";s:10:\"Homepage 1\";}i:1;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}}s:8:\"filesize\";i:177112;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:2:\"no\";s:10:\"image_urls\";s:61:\"https://elements.envato.com/business-dotted-world-map-C3EU3G7\";}i:40;a:8:{s:8:\"filename\";s:13:\"adadadada.png\";s:13:\"thumbnail_url\";s:85:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/adadadada.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}}s:8:\"filesize\";i:253976;s:10:\"dimensions\";a:2:{i:0;i:443;i:1;i:666;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:84:\"https://elements.envato.com/portrait-of-handsome-man-against-gray-background-EGKRGJS\";}i:41;a:8:{s:8:\"filename\";s:7:\"TTD.png\";s:13:\"thumbnail_url\";s:79:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/TTD.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}}s:8:\"filesize\";i:5012;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:69;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:42;a:8:{s:8:\"filename\";s:7:\"G15.jpg\";s:13:\"thumbnail_url\";s:87:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G15-800x444.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-2.json\";s:4:\"name\";s:11:\"Portfolio 2\";}}s:8:\"filesize\";i:190923;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:500;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/angel-statue-minimal-still-life-art-monochrome-tre-H75FPEF\";}i:43;a:8:{s:8:\"filename\";s:7:\"G16.jpg\";s:13:\"thumbnail_url\";s:87:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G16-800x444.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-2.json\";s:4:\"name\";s:11:\"Portfolio 2\";}}s:8:\"filesize\";i:115930;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:500;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/vanilla-mint-dj-girl-monochrome-party-colours-styl-QH4DLNU\";}i:44;a:8:{s:8:\"filename\";s:7:\"G17.jpg\";s:13:\"thumbnail_url\";s:87:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G17-800x444.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-2.json\";s:4:\"name\";s:11:\"Portfolio 2\";}}s:8:\"filesize\";i:119355;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:500;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:70:\"https://elements.envato.com/beautiful-origami-flower-structure-P49X8MZ\";}i:45;a:8:{s:8:\"filename\";s:7:\"G18.jpg\";s:13:\"thumbnail_url\";s:87:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G18-800x444.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-2.json\";s:4:\"name\";s:11:\"Portfolio 2\";}}s:8:\"filesize\";i:137752;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:500;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/face-care-concept-art-minimal-still-life-design-ma-A2YDCEW\";}i:46;a:8:{s:8:\"filename\";s:7:\"G19.jpg\";s:13:\"thumbnail_url\";s:87:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/G19-800x444.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/homepage-2.json\";s:4:\"name\";s:10:\"Homepage 2\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/portfolio-2.json\";s:4:\"name\";s:11:\"Portfolio 2\";}}s:8:\"filesize\";i:113555;s:10:\"dimensions\";a:2:{i:0;i:900;i:1;i:500;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/set-moisturizing-cosmetics-on-water-with-drops-gla-V7R3HX7\";}i:47;a:8:{s:8:\"filename\";s:11:\"a-aawfa.jpg\";s:13:\"thumbnail_url\";s:91:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/a-aawfa-800x222.jpg\";s:9:\"templates\";a:12:{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/about-me.json\";s:4:\"name\";s:8:\"About Me\";}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/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}i:4;a:2:{s:6:\"source\";s:26:\"templates/portfolio-1.json\";s:4:\"name\";s:11:\"Portfolio 1\";}i:5;a:2:{s:6:\"source\";s:26:\"templates/portfolio-2.json\";s:4:\"name\";s:11:\"Portfolio 2\";}i:6;a:2:{s:6:\"source\";s:26:\"templates/portfolio-3.json\";s:4:\"name\";s:11:\"Portfolio 3\";}i:7;a:2:{s:6:\"source\";s:29:\"templates/latest-project.json\";s:4:\"name\";s:14:\"Latest Project\";}i:8;a:2:{s:6:\"source\";s:29:\"templates/single-project.json\";s:4:\"name\";s:14:\"Single Project\";}i:9;a:2:{s:6:\"source\";s:26:\"templates/latest-news.json\";s:4:\"name\";s:11:\"Latest News\";}i:10;a:2:{s:6:\"source\";s:27:\"templates/testimonials.json\";s:4:\"name\";s:12:\"Testimonials\";}i:11;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}}s:8:\"filesize\";i:210044;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:533;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:82:\"https://elements.envato.com/beautiful-asian-japanese-girl-street-portraits-PL9LBJB\";}i:48;a:8:{s:8:\"filename\";s:7:\"S-1.png\";s:13:\"thumbnail_url\";s:79:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/S-1.png\";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:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:6580;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:279;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:66:\"https://elements.envato.com/65-marketing-agency-line-icons-WWTPSSS\";}i:49;a:8:{s:8:\"filename\";s:6:\"T5.png\";s:13:\"thumbnail_url\";s:78:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/T5.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}}s:8:\"filesize\";i:220188;s:10:\"dimensions\";a:2:{i:0;i:454;i:1;i:406;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/close-up-portrait-of-a-young-stylish-man-with-drea-EBYSJSG\";}i:50;a:8:{s:8:\"filename\";s:6:\"T6.png\";s:13:\"thumbnail_url\";s:78:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/T6.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/our-team.json\";s:4:\"name\";s:8:\"Our Team\";}}s:8:\"filesize\";i:244584;s:10:\"dimensions\";a:2:{i:0;i:454;i:1;i:406;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/young-handsome-african-businessman-against-brown-b-N54YVZ4\";}i:51;a:8:{s:8:\"filename\";s:8:\"Logo.png\";s:13:\"thumbnail_url\";s:80:\"http://kfkit.rometheme.pro/criativo/wp-content/uploads/sites/10/2021/08/Logo.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:21:\"templates/footer.json\";s:4:\"name\";s:6:\"Footer\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/header.json\";s:4:\"name\";s:6:\"Header\";}}s:8:\"filesize\";i:4193;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:86;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}}}");
INSERT INTO 7ja_postmeta VALUES("2440","348","envato_tk_folder_name","e73bf443cab61526db1d6fca5f525bbb");
INSERT INTO 7ja_postmeta VALUES("2441","348","envato_tk_builder","elementor");
INSERT INTO 7ja_postmeta VALUES("2442","348","envato_tk_source_zip_url","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/template-kits/e73bf443cab61526db1d6fca5f525bbb/source-348.zip");
INSERT INTO 7ja_postmeta VALUES("2443","349","_form","<label> Your name\n    [text* your-name autocomplete:name] </label>\n\n<label> Your email\n    [email* your-email autocomplete:email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]");
INSERT INTO 7ja_postmeta VALUES("2444","349","_mail","a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:48:\"[_site_title] <wordpress@latitude39creative.com>\";s:9:\"recipient\";s:26:\"ben@latitude39creative.com\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO 7ja_postmeta VALUES("2445","349","_mail_2","a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:48:\"[_site_title] <wordpress@latitude39creative.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO 7ja_postmeta VALUES("2446","349","_messages","a:22:{s:12:\"mail_sent_ok\";s:75:\"Thank you for contacting us! We will reach out to book your discovery call.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:41:\"Please enter a date in YYYY-MM-DD format.\";s:14:\"date_too_early\";s:32:\"This field has a too early date.\";s:13:\"date_too_late\";s:31:\"This field has a too late date.\";s:14:\"invalid_number\";s:22:\"Please enter a number.\";s:16:\"number_too_small\";s:34:\"This field has a too small number.\";s:16:\"number_too_large\";s:34:\"This field has a too large number.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:30:\"Please enter an email address.\";s:11:\"invalid_url\";s:19:\"Please enter a URL.\";s:11:\"invalid_tel\";s:32:\"Please enter a telephone number.\";}");
INSERT INTO 7ja_postmeta VALUES("2447","349","_additional_settings","");
INSERT INTO 7ja_postmeta VALUES("2448","349","_locale","en_US");
INSERT INTO 7ja_postmeta VALUES("2467","353","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2468","353","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("2469","353","_elementor_version","3.10.1");
INSERT INTO 7ja_postmeta VALUES("2470","353","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("2471","353","_elementor_data","[{\"id\":\"4d2aac0b\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_overlay_color\":\"globals\\/colors?id=98f6a1a\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ea1c7e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"74f13751\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"350\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Logo.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73b72e3e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4f69c543\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99f2b4b\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b7b1ef8\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6beb8c8\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5f77050\"},{\"text\":\"Pages\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0654bdc\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4454d1f\"}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_align\":\"center\",\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=02b9182\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"75d11fd4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"15718ffe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"262190ef\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"_id\":\"d797698\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a987b4d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"309188d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3d1e96a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 Criativo Creative Agency. All Right Reserved By Rometheme.\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=a8362ae\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("2472","354","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2473","354","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("2474","354","_elementor_version","3.10.1");
INSERT INTO 7ja_postmeta VALUES("2475","354","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("2476","354","_elementor_data","[{\"id\":\"4d2aac0b\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_overlay_color\":\"globals\\/colors?id=98f6a1a\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ea1c7e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"74f13751\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"350\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Logo.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73b72e3e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4f69c543\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99f2b4b\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b7b1ef8\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6beb8c8\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5f77050\"},{\"text\":\"Pages\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0654bdc\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4454d1f\"}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_align\":\"center\",\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=02b9182\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"75d11fd4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"15718ffe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"262190ef\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"_id\":\"d797698\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a987b4d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"309188d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3d1e96a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 Criativo Creative Agency. All Right Reserved By Rometheme.\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=a8362ae\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("2477","353","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("2478","353","_elementor_controls_usage","a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:15:\"hover_animation\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:21:\"space_between_widgets\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:2;s:22:\"background_hover_image\";i:2;s:31:\"background_hover_video_fallback\";i:2;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:2;s:30:\"background_overlay_hover_image\";i:2;s:39:\"background_overlay_hover_video_fallback\";i:2;}}s:8:\"advanced\";a:1:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:26:\"section_background_overlay\";a:8:{s:29:\"background_overlay_background\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:32:\"background_overlay_gradient_type\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:2;s:30:\"background_overlay_hover_image\";i:2;s:39:\"background_overlay_hover_video_fallback\";i:2;}s:18:\"section_background\";a:4:{s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:2;s:22:\"background_hover_image\";i:2;s:31:\"background_hover_video_fallback\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}}s:6:\"layout\";a:1:{s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("2479","353","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("2480","353","envato_tk_source_kit","348");
INSERT INTO 7ja_postmeta VALUES("2481","353","envato_tk_source_index","15");
INSERT INTO 7ja_postmeta VALUES("2482","355","_wp_attached_file","2023/01/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg");
INSERT INTO 7ja_postmeta VALUES("2483","355","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:61:\"2023/01/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\";s:8:\"filesize\";i:226310;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"portrait-of-a-woman-with-artistic-make-up-P7ZSU5P-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6018;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"portrait-of-a-woman-with-artistic-make-up-P7ZSU5P-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"portrait-of-a-woman-with-artistic-make-up-P7ZSU5P-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3262;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"portrait-of-a-woman-with-artistic-make-up-P7ZSU5P-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24420;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"portrait-of-a-woman-with-artistic-make-up-P7ZSU5P-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84590;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2484","355","_elementor_source_image_hash","72b33227e13c73c0797c6b3bfba4c073a3213914");
INSERT INTO 7ja_postmeta VALUES("2485","356","_wp_attached_file","2023/01/6-Brand-Identity.png");
INSERT INTO 7ja_postmeta VALUES("2486","356","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2023/01/6-Brand-Identity.png\";s:8:\"filesize\";i:12406;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"6-Brand-Identity-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11933;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"6-Brand-Identity-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7140;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2487","356","_elementor_source_image_hash","2346d12668117aa06160b05a34e612c35f83cc67");
INSERT INTO 7ja_postmeta VALUES("2488","357","_wp_attached_file","2023/01/5-Web-Design.png");
INSERT INTO 7ja_postmeta VALUES("2489","357","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2023/01/5-Web-Design.png\";s:8:\"filesize\";i:10764;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"5-Web-Design-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10301;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"5-Web-Design-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2490","357","_elementor_source_image_hash","e8345de753f0f41e50b0610c5a85e50b7f4cc37b");
INSERT INTO 7ja_postmeta VALUES("2491","358","_wp_attached_file","2023/01/1-Ui-Ux.png");
INSERT INTO 7ja_postmeta VALUES("2492","358","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:19:\"2023/01/1-Ui-Ux.png\";s:8:\"filesize\";i:9841;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"1-Ui-Ux-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9496;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"1-Ui-Ux-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5590;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2493","358","_elementor_source_image_hash","eb212913b77b886690d90a0bf56beee1fe43cdfb");
INSERT INTO 7ja_postmeta VALUES("2494","359","_wp_attached_file","2023/01/4-Video-Marketing.png");
INSERT INTO 7ja_postmeta VALUES("2495","359","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2023/01/4-Video-Marketing.png\";s:8:\"filesize\";i:12142;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"4-Video-Marketing-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11551;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"4-Video-Marketing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6791;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2496","359","_elementor_source_image_hash","06ee7fe562653093a81077124371fb8114484435");
INSERT INTO 7ja_postmeta VALUES("2497","360","_wp_attached_file","2023/01/Untitled-1.png");
INSERT INTO 7ja_postmeta VALUES("2498","360","_wp_attachment_metadata","a:6:{s:5:\"width\";i:498;s:6:\"height\";i:647;s:4:\"file\";s:22:\"2023/01/Untitled-1.png\";s:8:\"filesize\";i:252707;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-1-231x300.png\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60279;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-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:24722;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2499","360","_elementor_source_image_hash","e5766c31a3f8b97f5321810011533cfee4dd4ee5");
INSERT INTO 7ja_postmeta VALUES("2500","361","_wp_attached_file","2023/01/Clean-Code.png");
INSERT INTO 7ja_postmeta VALUES("2501","361","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2023/01/Clean-Code.png\";s:8:\"filesize\";i:17868;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Clean-Code-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17531;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Clean-Code-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10072;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2502","361","_elementor_source_image_hash","29d8a20732211836b6ae8db726a78a351ede185c");
INSERT INTO 7ja_postmeta VALUES("2503","362","_wp_attached_file","2023/01/Modern-Design.png");
INSERT INTO 7ja_postmeta VALUES("2504","362","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2023/01/Modern-Design.png\";s:8:\"filesize\";i:12416;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Modern-Design-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12160;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Modern-Design-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7461;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2505","362","_elementor_source_image_hash","3f61eed1527de1e93b2260e1a0fdd71c99de612f");
INSERT INTO 7ja_postmeta VALUES("2506","363","_wp_attached_file","2023/01/1.jpg");
INSERT INTO 7ja_postmeta VALUES("2507","363","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2023/01/1.jpg\";s:8:\"filesize\";i:188359;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5287;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1751;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20426;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:14:\"1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70826;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2508","363","_elementor_source_image_hash","1a88b8f37ad327224bc53bc77b4cc43394b4083e");
INSERT INTO 7ja_postmeta VALUES("2509","364","_wp_attached_file","2023/01/10-Project-Done.png");
INSERT INTO 7ja_postmeta VALUES("2510","364","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2023/01/10-Project-Done.png\";s:8:\"filesize\";i:9604;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"10-Project-Done-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6327;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"10-Project-Done-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5504;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2511","364","_elementor_source_image_hash","93a3c22fc6c549e12e85fb1e40f95b53b856c32a");
INSERT INTO 7ja_postmeta VALUES("2512","365","_wp_attached_file","2023/01/7-Happy-Costumer.png");
INSERT INTO 7ja_postmeta VALUES("2513","365","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2023/01/7-Happy-Costumer.png\";s:8:\"filesize\";i:14248;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"7-Happy-Costumer-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9218;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"7-Happy-Costumer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8523;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2514","365","_elementor_source_image_hash","69f17c2af9af3572dfff72c42479ac9d6aacf5a3");
INSERT INTO 7ja_postmeta VALUES("2515","366","_wp_attached_file","2023/01/8-Award-Winning.png");
INSERT INTO 7ja_postmeta VALUES("2516","366","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2023/01/8-Award-Winning.png\";s:8:\"filesize\";i:9154;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"8-Award-Winning-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8939;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"8-Award-Winning-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5402;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2517","366","_elementor_source_image_hash","1aec0a5743bab015483fc987532ad673853d4654");
INSERT INTO 7ja_postmeta VALUES("2518","367","_wp_attached_file","2023/01/9-Team-Crew.png");
INSERT INTO 7ja_postmeta VALUES("2519","367","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2023/01/9-Team-Crew.png\";s:8:\"filesize\";i:22645;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"9-Team-Crew-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22295;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"9-Team-Crew-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13581;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2520","367","_elementor_source_image_hash","f8e039000e417fba6817d58495ce70e24c000cfc");
INSERT INTO 7ja_postmeta VALUES("2533","372","_wp_attached_file","2023/01/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg");
INSERT INTO 7ja_postmeta VALUES("2534","372","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:62:\"2023/01/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\";s:8:\"filesize\";i:187822;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"side-view-portrait-of-a-woman-with-make-up-CTUMAUJ-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5239;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"side-view-portrait-of-a-woman-with-make-up-CTUMAUJ-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33593;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"side-view-portrait-of-a-woman-with-make-up-CTUMAUJ-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1722;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"side-view-portrait-of-a-woman-with-make-up-CTUMAUJ-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20343;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"side-view-portrait-of-a-woman-with-make-up-CTUMAUJ-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70295;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2535","372","_elementor_source_image_hash","89913430d361b53566b5f649756ac5a9f9d961d9");
INSERT INTO 7ja_postmeta VALUES("2551","378","_wp_attached_file","2023/01/apelah.jpg");
INSERT INTO 7ja_postmeta VALUES("2552","378","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2023/01/apelah.jpg\";s:8:\"filesize\";i:213753;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"apelah-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13163;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"apelah-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77671;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"apelah-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7739;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"apelah-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50044;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"apelah-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143495;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2553","378","_elementor_source_image_hash","feeb75fcc2f374f6ec1153ed5744237dd25308f8");
INSERT INTO 7ja_postmeta VALUES("2554","379","_wp_attached_file","2023/01/11.jpg");
INSERT INTO 7ja_postmeta VALUES("2555","379","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:14:\"2023/01/11.jpg\";s:8:\"filesize\";i:207721;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12359;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101252;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5627;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59354;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:16:\"11-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204559;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2556","379","_elementor_source_image_hash","33b6b0f1f8edfd988ac7928effb70344eb9ea728");
INSERT INTO 7ja_postmeta VALUES("2557","380","_wp_attached_file","2023/01/Bg-1.jpg");
INSERT INTO 7ja_postmeta VALUES("2558","380","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:16:\"2023/01/Bg-1.jpg\";s:8:\"filesize\";i:139701;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"Bg-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:6369;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"Bg-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:55016;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"Bg-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:2258;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"Bg-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:31158;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"Bg-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:114517;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2559","380","_elementor_source_image_hash","8abcb1929eb182640ef817586fdd79ed12fa6ac2");
INSERT INTO 7ja_postmeta VALUES("2587","390","_wp_attached_file","2023/01/adadad.jpg");
INSERT INTO 7ja_postmeta VALUES("2588","390","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:18:\"2023/01/adadad.jpg\";s:8:\"filesize\";i:243682;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"adadad-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9067;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"adadad-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64900;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"adadad-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5077;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"adadad-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38653;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"adadad-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2589","390","_elementor_source_image_hash","efbf1e384f3d3467d16a4fe1256bcbfeadec7ea7");
INSERT INTO 7ja_postmeta VALUES("2599","394","_wp_attached_file","2023/01/bg-2.png");
INSERT INTO 7ja_postmeta VALUES("2600","394","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:16:\"2023/01/bg-2.png\";s:8:\"filesize\";i:177112;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"bg-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7833;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"bg-2-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73740;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"bg-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:4629;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"bg-2-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46219;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"bg-2-1536x1024.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133240;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("2601","394","_elementor_source_image_hash","ae4a58c2a6d7ec6093b5bf64a52f76cb19512691");
INSERT INTO 7ja_postmeta VALUES("2681","169","_oembed_7befe71c04536851b6485e7b012d3f0d","<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>");
INSERT INTO 7ja_postmeta VALUES("2682","169","_oembed_time_7befe71c04536851b6485e7b012d3f0d","1674705338");
INSERT INTO 7ja_postmeta VALUES("2691","403","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2692","403","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("2693","403","_elementor_version","3.10.1");
INSERT INTO 7ja_postmeta VALUES("2694","403","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("2695","403","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("2696","403","_elementor_page_settings","a:20:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:13:\"custom_colors\";a:6:{i:0;a:3:{s:3:\"_id\";s:7:\"f898f31\";s:5:\"title\";s:13:\"White Element\";s:5:\"color\";s:7:\"#FFFEFE\";}i:1;a:3:{s:3:\"_id\";s:7:\"0d046a4\";s:5:\"title\";s:17:\"Dark Grey Element\";s:5:\"color\";s:7:\"#E9E9E9\";}i:2;a:3:{s:3:\"_id\";s:7:\"c6c574f\";s:5:\"title\";s:13:\"Light Grey BG\";s:5:\"color\";s:7:\"#F9F9F9\";}i:3;a:3:{s:3:\"_id\";s:7:\"7ad78f4\";s:5:\"title\";s:16:\"White Overlay BG\";s:5:\"color\";s:9:\"#FFFFFFE6\";}i:4;a:3:{s:3:\"_id\";s:7:\"8630d9f\";s:5:\"title\";s:17:\"Full Transparency\";s:5:\"color\";s:9:\"#7E222200\";}i:5;a:3:{s:3:\"_id\";s:7:\"b500f0a\";s:5:\"title\";s:8:\"White BG\";s:5:\"color\";s:7:\"#FFFFFF\";}}s:17:\"system_typography\";a:4:{i:0;a:10:{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:12:\"Varela Round\";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:45;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;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:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.4\";s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:10:\"Montserrat\";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:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;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:\"#4632DA\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#3D4459\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#FFFFFF\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#06D9FA\";}}s:17:\"custom_typography\";a:8:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:3:\"_id\";s:7:\"6ed476c\";s:5:\"title\";s:10:\"Subheading\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"9525bd0\";s:5:\"title\";s:22:\"Testimonials & Excerpt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"cdaaf6a\";s:5:\"title\";s:13:\"Medium Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:3;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"0009af8\";s:5:\"title\";s:12:\"Small Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:3:\"_id\";s:7:\"ef2c50b\";s:5:\"title\";s:10:\"Menu Links\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"f8a9e51\";s:5:\"title\";s:11:\"Large Title\";}i:6;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"70\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ccc280a\";s:5:\"title\";s:16:\"Popup Main Title\";}i:7;a:10:{s:3:\"_id\";s:7:\"2c11d45\";s:5:\"title\";s:15:\"Hero Main Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"45\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1400\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:2:{s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=f898f31\";s:21:\"body_background_color\";s:25:\"globals/colors?id=b500f0a\";}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}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\";s:1:\"1\";}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}s:26:\"body_background_background\";s:7:\"classic\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:25:\"mobile_browser_background\";s:7:\"#FFFFFF\";s:18:\"lightbox_title_src\";s:0:\"\";s:9:\"site_name\";s:20:\"Latitude 39 Creative\";s:16:\"site_description\";s:30:\"Creation Starts At Latitude 39\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}");
INSERT INTO 7ja_postmeta VALUES("2697","403","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("2698","403","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("2706","404","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2707","404","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("2708","404","_elementor_version","3.10.1");
INSERT INTO 7ja_postmeta VALUES("2709","404","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("2710","404","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("2711","404","_elementor_page_settings","a:20:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:13:\"custom_colors\";a:6:{i:0;a:3:{s:3:\"_id\";s:7:\"f898f31\";s:5:\"title\";s:13:\"White Element\";s:5:\"color\";s:7:\"#FFFEFE\";}i:1;a:3:{s:3:\"_id\";s:7:\"0d046a4\";s:5:\"title\";s:17:\"Dark Grey Element\";s:5:\"color\";s:7:\"#E9E9E9\";}i:2;a:3:{s:3:\"_id\";s:7:\"c6c574f\";s:5:\"title\";s:13:\"Light Grey BG\";s:5:\"color\";s:7:\"#F9F9F9\";}i:3;a:3:{s:3:\"_id\";s:7:\"7ad78f4\";s:5:\"title\";s:16:\"White Overlay BG\";s:5:\"color\";s:9:\"#FFFFFFE6\";}i:4;a:3:{s:3:\"_id\";s:7:\"8630d9f\";s:5:\"title\";s:17:\"Full Transparency\";s:5:\"color\";s:9:\"#7E222200\";}i:5;a:3:{s:3:\"_id\";s:7:\"b500f0a\";s:5:\"title\";s:8:\"White BG\";s:5:\"color\";s:7:\"#FFFFFF\";}}s:17:\"system_typography\";a:4:{i:0;a:10:{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:12:\"Varela Round\";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:45;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;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:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.4\";s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:10:\"Montserrat\";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:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;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:\"#4632DA\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#FFFFFF\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#06D9FA\";}}s:17:\"custom_typography\";a:8:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:3:\"_id\";s:7:\"6ed476c\";s:5:\"title\";s:10:\"Subheading\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"9525bd0\";s:5:\"title\";s:22:\"Testimonials & Excerpt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"cdaaf6a\";s:5:\"title\";s:13:\"Medium Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:3;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"0009af8\";s:5:\"title\";s:12:\"Small Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:3:\"_id\";s:7:\"ef2c50b\";s:5:\"title\";s:10:\"Menu Links\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"f8a9e51\";s:5:\"title\";s:11:\"Large Title\";}i:6;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"70\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ccc280a\";s:5:\"title\";s:16:\"Popup Main Title\";}i:7;a:10:{s:3:\"_id\";s:7:\"2c11d45\";s:5:\"title\";s:15:\"Hero Main Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"45\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1400\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:2:{s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=f898f31\";s:21:\"body_background_color\";s:25:\"globals/colors?id=b500f0a\";}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}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\";s:1:\"1\";}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}s:26:\"body_background_background\";s:7:\"classic\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:25:\"mobile_browser_background\";s:7:\"#FFFFFF\";s:18:\"lightbox_title_src\";s:0:\"\";s:9:\"site_name\";s:20:\"Latitude 39 Creative\";s:16:\"site_description\";s:30:\"Creation Starts At Latitude 39\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}");
INSERT INTO 7ja_postmeta VALUES("2712","404","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("2713","404","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("2739","169","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("2942","24","ekit_post_views_count","11");
INSERT INTO 7ja_postmeta VALUES("2970","11","ekit_post_views_count","4");
INSERT INTO 7ja_postmeta VALUES("2971","11","_edit_lock","1674831986:1");
INSERT INTO 7ja_postmeta VALUES("2972","11","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("2973","11","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("2974","428","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("2975","428","_elementor_template_type","error-404");
INSERT INTO 7ja_postmeta VALUES("2976","428","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("2977","428","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("2978","428","_elementor_data","[{\"id\":\"54187df1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":394,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"404\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#26B6A3E6\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top center\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"2b853ab5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6c656575\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"700\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"9\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"overflow\":\"hidden\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"66f8c7e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\",\"id\":390,\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"background_background\":\"classic\",\"background_xpos\":{\"unit\":\"px\",\"size\":-800,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-422,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4f54a80b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ooops.\",\"align\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ccc280a\",\"title_color\":\"globals\\/colors?id=f898f31\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"123e713d\",\"elType\":\"widget\",\"settings\":{\"title\":\" I Think You Got Lost.\",\"align\":\"center\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=6ed476c\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77b831d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Page You Were Looking For Couldn\'t Be Found.\",\"align\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1536f17\",\"elType\":\"widget\",\"settings\":{\"text\":\"back to home page\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"align_mobile\":\"center\",\"align\":\"center\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7a41abc\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"button_text_color\":\"globals\\/colors?id=f898f31\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=f898f31\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("2979","428","_elementor_page_assets","a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("2980","428","_elementor_conditions","a:1:{i:0;s:29:\"include/singular/not_found404\";}");
INSERT INTO 7ja_postmeta VALUES("2981","428","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("2982","428","_elementor_screenshot","a:2:{s:2:\"id\";i:216;s:3:\"url\";s:150:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_11_2022-11-12-00-28-44_3a0672db.png\";}");
INSERT INTO 7ja_postmeta VALUES("2984","428","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("2985","428","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("2986","11","_elementor_controls_usage","a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:5:\"align\";i:3;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;s:10:\"icon_align\";i:1;s:11:\"icon_indent\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:13:\"border_radius\";i:1;s:33:\"button_box_shadow_box_shadow_type\";i:1;s:28:\"button_box_shadow_box_shadow\";i:1;s:12:\"align_mobile\";i:1;s:5:\"align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:16:\"background_image\";i:1;s:21:\"background_background\";i:2;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:8:{s:13:\"content_width\";i:1;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:16:\"content_position\";i:1;s:8:\"overflow\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:6:\"_title\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:2;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:37:\"background_motion_fx_mouseTrack_speed\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:24:\"background_gradient_type\";i:1;s:28:\"background_gradient_position\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("3028","433","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3029","433","_elementor_template_type","kit");
INSERT INTO 7ja_postmeta VALUES("3030","433","_elementor_version","3.10.1");
INSERT INTO 7ja_postmeta VALUES("3031","433","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3032","433","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("3033","433","_elementor_page_settings","a:20:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:13:\"custom_colors\";a:6:{i:0;a:3:{s:3:\"_id\";s:7:\"f898f31\";s:5:\"title\";s:13:\"White Element\";s:5:\"color\";s:7:\"#FFFEFE\";}i:1;a:3:{s:3:\"_id\";s:7:\"0d046a4\";s:5:\"title\";s:17:\"Dark Grey Element\";s:5:\"color\";s:7:\"#E9E9E9\";}i:2;a:3:{s:3:\"_id\";s:7:\"c6c574f\";s:5:\"title\";s:13:\"Light Grey BG\";s:5:\"color\";s:7:\"#F9F9F9\";}i:3;a:3:{s:3:\"_id\";s:7:\"7ad78f4\";s:5:\"title\";s:16:\"White Overlay BG\";s:5:\"color\";s:9:\"#FFFFFFE6\";}i:4;a:3:{s:3:\"_id\";s:7:\"8630d9f\";s:5:\"title\";s:17:\"Full Transparency\";s:5:\"color\";s:9:\"#7E222200\";}i:5;a:3:{s:3:\"_id\";s:7:\"b500f0a\";s:5:\"title\";s:8:\"White BG\";s:5:\"color\";s:7:\"#FFFFFF\";}}s:17:\"system_typography\";a:4:{i:0;a:10:{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:12:\"Varela Round\";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:45;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;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:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:9:{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:10:\"Montserrat\";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:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.4\";s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:10:\"Montserrat\";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:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;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:\"#26B6A3\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#FFFFFF\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#06D9FA\";}}s:17:\"custom_typography\";a:8:{i:0;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:3:\"_id\";s:7:\"6ed476c\";s:5:\"title\";s:10:\"Subheading\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"9525bd0\";s:5:\"title\";s:22:\"Testimonials & Excerpt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";}i:2;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"cdaaf6a\";s:5:\"title\";s:13:\"Medium Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:3;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:3:\"_id\";s:7:\"0009af8\";s:5:\"title\";s:12:\"Small Titles\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:3:\"_id\";s:7:\"ef2c50b\";s:5:\"title\";s:10:\"Menu Links\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"15\";s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"25\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"f8a9e51\";s:5:\"title\";s:11:\"Large Title\";}i:6;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"70\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"ccc280a\";s:5:\"title\";s:16:\"Popup Main Title\";}i:7;a:10:{s:3:\"_id\";s:7:\"2c11d45\";s:5:\"title\";s:15:\"Hero Main Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Varela Round\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"50\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"45\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"35\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1400\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:2:{s:25:\"mobile_browser_background\";s:25:\"globals/colors?id=f898f31\";s:21:\"body_background_color\";s:25:\"globals/colors?id=b500f0a\";}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}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\";s:1:\"1\";}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";s:1:\"1\";}s:26:\"body_background_background\";s:7:\"classic\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:25:\"mobile_browser_background\";s:7:\"#FFFFFF\";s:18:\"lightbox_title_src\";s:0:\"\";s:9:\"site_name\";s:20:\"Latitude 39 Creative\";s:16:\"site_description\";s:30:\"Creation Starts At Latitude 39\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}");
INSERT INTO 7ja_postmeta VALUES("3034","433","_elementor_data","[]");
INSERT INTO 7ja_postmeta VALUES("3035","433","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("3072","437","_wp_attached_file","2023/01/a-aawfa.jpg");
INSERT INTO 7ja_postmeta VALUES("3073","437","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:533;s:4:\"file\";s:19:\"2023/01/a-aawfa.jpg\";s:8:\"filesize\";i:210044;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"a-aawfa-300x83.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8540;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"a-aawfa-1024x284.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63565;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"a-aawfa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7257;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"a-aawfa-768x213.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37678;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"a-aawfa-1536x426.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130138;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3074","437","_elementor_source_image_hash","0124b8b9dad1ad8658702fb2d6c8fdd6be48f713");
INSERT INTO 7ja_postmeta VALUES("3075","438","_wp_attached_file","2023/01/S-1.png");
INSERT INTO 7ja_postmeta VALUES("3076","438","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:279;s:4:\"file\";s:15:\"2023/01/S-1.png\";s:8:\"filesize\";i:6580;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"S-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:3738;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3077","438","_elementor_source_image_hash","9be2d2232a9f9cc71ab9135825282be923c8ee0f");
INSERT INTO 7ja_postmeta VALUES("3090","443","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3091","443","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("3092","443","_elementor_version","3.10.1");
INSERT INTO 7ja_postmeta VALUES("3093","443","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3094","443","_elementor_data","[{\"id\":\"458dae68\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63d9c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"31e55675\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"About {{Criativo}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=44d4208\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"43a2e213\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ About Us<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23452d72\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c84ac44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5ec5fd0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"628af0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"fc2ac89\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} to Get Our Clients.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"ABOUT US\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"407b59c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"508a3ac8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInUp\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e644e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"418f27aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"title_text\":\"Clean Code\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"image_size\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"413cdc38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"77f184c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"title_text\":\"Modern Design\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"image_size\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"344a1df0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"50\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=98f6a1a\",\"background_overlay_color_b\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"555ea096\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6e14e5e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"373\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-1.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"171decff\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3a935824\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"374\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-2.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1511d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1b0873c9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"375\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-3.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7752ed7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"37cd5be5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"376\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-5.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"23eabcde\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1ab0982\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"377\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-6.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b10d688\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cfb6361\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"e8cc974\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"79aaec50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a.<\\/p><p>Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum. Donec non blandit elit.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f07a38b\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW ALL\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":135180,\"sizes\":[]},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e909243\",\"button_text_color\":\"globals\\/colors?id=6aba3dc\",\"background_color_b\":\"globals\\/colors?id=6fc639b\",\"background_color\":\"globals\\/colors?id=6fc639b\",\"hover_color\":\"globals\\/colors?id=6aba3dc\",\"button_background_hover_color\":\"globals\\/colors?id=a88f8f1\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"size\":\"xs\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"54463c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"59c66ebf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f135347\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6cae4fee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Branding \",\"ekit_icon_box_description_text\":\"We bring the right people together to challenge\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#AAAAAA\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=349d81c\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"globals\\/colors?id=98f6a1a\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_icon_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=48147d0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=b859a05\"},\"ekit_icon_box_header_image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"20e3004\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7c4935c\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"UI & UX Design\",\"ekit_icon_box_description_text\":\"We bring the right people together to challenge\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"#F9F9F9\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color\":\"#AAAAAA\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"globals\\/colors?id=349d81c\",\"ekit_icon_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"globals\\/colors?id=98f6a1a\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=48147d0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=b859a05\"},\"ekit_icon_box_header_image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e4f3851\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16be5bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"52e6932c\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"UI & UX Design\",\"ekit_icon_box_description_text\":\"We bring the right people together to challenge\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"#F9F9F9\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color\":\"#AAAAAA\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"globals\\/colors?id=349d81c\",\"ekit_icon_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"globals\\/colors?id=98f6a1a\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=48147d0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=b859a05\"},\"ekit_icon_box_header_image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"3f2a5ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2bb7df1e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Development\",\"ekit_icon_box_description_text\":\"We bring the right people together to challenge\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"#F9F9F9\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color\":\"#AAAAAA\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=349d81c\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"globals\\/colors?id=98f6a1a\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_icon_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=48147d0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=b859a05\"},\"ekit_icon_box_header_image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11d4889a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=98f6a1a\",\"background_overlay_color_b\":\"globals\\/colors?id=349d81c\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d23c625\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"e6a8434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e06ce66\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Project Done\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=6aba3dc\",\"counter_num_color\":\"globals\\/colors?id=6fc639b\",\"counter_num_typography_typography\":\"globals\\/typography?id=cad98b2\",\"counter_title_color\":\"globals\\/colors?id=6aba3dc\",\"counter_title_typography_typography\":\"globals\\/typography?id=e909243\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":439,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"},\"counter_icon_bg_image\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"1b944ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2e645791\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5186cb7d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":75,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Costumer\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=6aba3dc\",\"counter_num_color\":\"globals\\/colors?id=6fc639b\",\"counter_num_typography_typography\":\"globals\\/typography?id=cad98b2\",\"counter_title_color\":\"globals\\/colors?id=6aba3dc\",\"counter_title_typography_typography\":\"globals\\/typography?id=e909243\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":440,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"},\"counter_icon_bg_image\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"356e50f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6c606e77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"366\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/8-Award-Winning.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"110f31c4\",\"elType\":\"widget\",\"settings\":{\"ending_number\":20,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Award Winning\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=6aba3dc\",\"counter_num_color\":\"globals\\/colors?id=6fc639b\",\"counter_num_typography_typography\":\"globals\\/typography?id=cad98b2\",\"counter_title_color\":\"globals\\/colors?id=6aba3dc\",\"counter_title_typography_typography\":\"globals\\/typography?id=e909243\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":441,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"counter_icon_bg_image\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"76f73a15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"434ab8b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"367\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/9-Team-Crew.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"74293a31\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Team Members\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=6aba3dc\",\"counter_num_color\":\"globals\\/colors?id=6fc639b\",\"counter_num_typography_typography\":\"globals\\/typography?id=cad98b2\",\"counter_title_color\":\"globals\\/colors?id=6aba3dc\",\"counter_title_typography_typography\":\"globals\\/typography?id=e909243\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":442,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"},\"counter_icon_bg_image\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49c66132\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"221d38b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"71aa1a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f49b616\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6779999999999972715158946812152862548828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"9767222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Cases.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"10636f5b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"49e33254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68d7710d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis\",\"_id\":\"6226366\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo.\",\"_id\":\"26b7c29\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6aba3dc\",\"icon_typography_typography\":\"globals\\/typography?id=b859a05\",\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"413f9f54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3220000000000027284841053187847137451171875,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5f8f9984\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Brand Identity\",\"_id\":\"5fb0e99\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_bg\":{\"id\":\"368\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/G9.jpg\"},\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_active\":\"no\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"gradient\",\"__globals__\":{\"ekit_img_accordion_bg_active_color_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_img_accordion_bg_active_color_color\":\"globals\\/colors?id=b8b753d\",\"ekit_img_accordion_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_img_accordion_pup_up_icon_color\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=a88f8f1\"},\"ekit_img_accordion_bg_active_color_color_b\":\"#151515\",\"ekit_img_accordion_title_color\":\"#F9F9F9\",\"ekit_img_accordion_btn_typography_typography\":\"custom\",\"ekit_img_accordion_btn_typography_font_family\":\"Roboto\",\"ekit_img_accordion_btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_img_accordion_btn_typography_font_weight\":\"400\",\"ekit_img_accordion_btn_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_img_accordion_btn_text_color\":\"#5CD2B9\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#02010100\",\"ekit_img_accordion_pup_up_icon_color\":\"#F9F9F9\",\"action_btn_bg\":\"#5CD2B9\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"#F9F9F9\",\"action_btn_bg_hover\":\"#5CD2B9\",\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d686e6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"774c9f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1e701e99\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Web Design\",\"_id\":\"5fb0e99\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_bg\":{\"id\":\"369\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/G5.jpg\"},\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_active\":\"no\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"gradient\",\"__globals__\":{\"ekit_img_accordion_bg_active_color_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_img_accordion_bg_active_color_color\":\"globals\\/colors?id=b8b753d\",\"ekit_img_accordion_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_img_accordion_pup_up_icon_color\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=a88f8f1\"},\"ekit_img_accordion_bg_active_color_color_b\":\"#151515\",\"ekit_img_accordion_title_color\":\"#F9F9F9\",\"ekit_img_accordion_btn_typography_typography\":\"custom\",\"ekit_img_accordion_btn_typography_font_family\":\"Roboto\",\"ekit_img_accordion_btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_img_accordion_btn_typography_font_weight\":\"400\",\"ekit_img_accordion_btn_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_img_accordion_btn_text_color\":\"#5CD2B9\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#02010100\",\"ekit_img_accordion_pup_up_icon_color\":\"#F9F9F9\",\"action_btn_bg\":\"#5CD2B9\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"#F9F9F9\",\"action_btn_bg_hover\":\"#5CD2B9\",\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":true},{\"id\":\"71f5d62c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"18174712\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"UI & UX Design\",\"_id\":\"5fb0e99\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_bg\":{\"id\":\"370\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/G4.jpg\"},\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_active\":\"no\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"gradient\",\"__globals__\":{\"ekit_img_accordion_bg_active_color_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_img_accordion_bg_active_color_color\":\"globals\\/colors?id=b8b753d\",\"ekit_img_accordion_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_img_accordion_pup_up_icon_color\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=48147d0\"},\"ekit_img_accordion_bg_active_color_color_b\":\"#151515\",\"ekit_img_accordion_title_color\":\"#F9F9F9\",\"ekit_img_accordion_btn_typography_typography\":\"custom\",\"ekit_img_accordion_btn_typography_font_family\":\"Roboto\",\"ekit_img_accordion_btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_img_accordion_btn_typography_font_weight\":\"400\",\"ekit_img_accordion_btn_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_img_accordion_btn_text_color\":\"#5CD2B9\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#02010100\",\"ekit_img_accordion_pup_up_icon_color\":\"#F9F9F9\",\"action_btn_bg\":\"#5CD2B9\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"#F9F9F9\",\"action_btn_bg_hover\":\"#5CD2B9\",\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":true},{\"id\":\"633438ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4db6e37c\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Video Marketing\",\"_id\":\"5fb0e99\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_bg\":{\"id\":\"371\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/G1.jpg\"},\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_active\":\"no\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"gradient\",\"__globals__\":{\"ekit_img_accordion_bg_active_color_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_img_accordion_bg_active_color_color\":\"globals\\/colors?id=b8b753d\",\"ekit_img_accordion_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_img_accordion_pup_up_icon_color\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=a88f8f1\"},\"ekit_img_accordion_bg_active_color_color_b\":\"#151515\",\"ekit_img_accordion_title_color\":\"#F9F9F9\",\"ekit_img_accordion_btn_typography_typography\":\"custom\",\"ekit_img_accordion_btn_typography_font_family\":\"Roboto\",\"ekit_img_accordion_btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_img_accordion_btn_typography_font_weight\":\"400\",\"ekit_img_accordion_btn_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_img_accordion_btn_text_color\":\"#5CD2B9\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#02010100\",\"ekit_img_accordion_pup_up_icon_color\":\"#F9F9F9\",\"action_btn_bg\":\"#5CD2B9\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"#F9F9F9\",\"action_btn_bg_hover\":\"#5CD2B9\",\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d563155\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"467313e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"693b4282\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Meet Expert {{Team}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR TEAM\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"488564ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1afa764d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7dd88418\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"a661cd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53103086\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7b0249ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"381\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/T1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b30d04b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5209e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mike Washoski\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e82d8a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Designer\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b05eb6f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58c5e64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b608f47\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"201fedeb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c0157bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fafce30\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2a852fc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"382\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/T3.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"699d60b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7ee9dc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexi Black\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6783ed5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Designer\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2008bdec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7bc8141e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c23c955\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"24863131\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7a2e55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b8a0cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2de682ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"383\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/T2.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"80f9495\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5dd5409f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hanna Smith\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23f181f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Designer\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f1e22f0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45dd2ab9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d91db12\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67f8c903\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"534be41b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63546a67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"35f6eb5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"384\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/T4.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"13d48ffd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1408bfb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kevin Widagdo\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10844bf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Designer\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7fb10262\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7dab3325\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e80297f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3095","444","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3096","444","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("3097","444","_elementor_version","3.10.1");
INSERT INTO 7ja_postmeta VALUES("3098","444","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3099","444","_elementor_data","[{\"id\":\"458dae68\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63d9c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"31e55675\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"About {{Criativo}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=44d4208\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"43a2e213\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ About Us<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23452d72\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c84ac44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5ec5fd0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"628af0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"fc2ac89\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} to Get Our Clients.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"ABOUT US\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"407b59c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"508a3ac8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInUp\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e644e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"418f27aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"title_text\":\"Clean Code\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"image_size\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"413cdc38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"77f184c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"title_text\":\"Modern Design\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"image_size\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"344a1df0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"50\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=98f6a1a\",\"background_overlay_color_b\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"555ea096\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6e14e5e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"373\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-1.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"171decff\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3a935824\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"374\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-2.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1511d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1b0873c9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"375\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-3.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7752ed7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"37cd5be5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"376\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-5.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"23eabcde\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1ab0982\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"377\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-6.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b10d688\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cfb6361\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"e8cc974\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"79aaec50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a.<\\/p><p>Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum. Donec non blandit elit.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f07a38b\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW ALL\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":135180,\"sizes\":[]},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e909243\",\"button_text_color\":\"globals\\/colors?id=6aba3dc\",\"background_color_b\":\"globals\\/colors?id=6fc639b\",\"background_color\":\"globals\\/colors?id=6fc639b\",\"hover_color\":\"globals\\/colors?id=6aba3dc\",\"button_background_hover_color\":\"globals\\/colors?id=a88f8f1\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"size\":\"xs\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"54463c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"59c66ebf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f135347\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6cae4fee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Branding \",\"ekit_icon_box_description_text\":\"We bring the right people together to challenge\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#AAAAAA\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=349d81c\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"globals\\/colors?id=98f6a1a\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_icon_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=48147d0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=b859a05\"},\"ekit_icon_box_header_image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"20e3004\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7c4935c\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"UI & UX Design\",\"ekit_icon_box_description_text\":\"We bring the right people together to challenge\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"#F9F9F9\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color\":\"#AAAAAA\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"globals\\/colors?id=349d81c\",\"ekit_icon_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"globals\\/colors?id=98f6a1a\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=48147d0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=b859a05\"},\"ekit_icon_box_header_image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e4f3851\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16be5bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"52e6932c\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"UI & UX Design\",\"ekit_icon_box_description_text\":\"We bring the right people together to challenge\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"#F9F9F9\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color\":\"#AAAAAA\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"globals\\/colors?id=349d81c\",\"ekit_icon_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"globals\\/colors?id=98f6a1a\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=48147d0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=b859a05\"},\"ekit_icon_box_header_image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"3f2a5ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2bb7df1e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Development\",\"ekit_icon_box_description_text\":\"We bring the right people together to challenge\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"#F9F9F9\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color\":\"#AAAAAA\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=349d81c\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"globals\\/colors?id=98f6a1a\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_icon_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=6aba3dc\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=48147d0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=b859a05\"},\"ekit_icon_box_header_image\":{\"id\":\"438\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/S-1.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11d4889a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=98f6a1a\",\"background_overlay_color_b\":\"globals\\/colors?id=349d81c\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d23c625\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"e6a8434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e06ce66\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Project Done\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=6aba3dc\",\"counter_num_color\":\"globals\\/colors?id=6fc639b\",\"counter_num_typography_typography\":\"globals\\/typography?id=cad98b2\",\"counter_title_color\":\"globals\\/colors?id=6aba3dc\",\"counter_title_typography_typography\":\"globals\\/typography?id=e909243\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":439,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"},\"counter_icon_bg_image\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"1b944ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2e645791\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5186cb7d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":75,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Costumer\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=6aba3dc\",\"counter_num_color\":\"globals\\/colors?id=6fc639b\",\"counter_num_typography_typography\":\"globals\\/typography?id=cad98b2\",\"counter_title_color\":\"globals\\/colors?id=6aba3dc\",\"counter_title_typography_typography\":\"globals\\/typography?id=e909243\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":440,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"},\"counter_icon_bg_image\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"356e50f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6c606e77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"366\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/8-Award-Winning.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"110f31c4\",\"elType\":\"widget\",\"settings\":{\"ending_number\":20,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Award Winning\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=6aba3dc\",\"counter_num_color\":\"globals\\/colors?id=6fc639b\",\"counter_num_typography_typography\":\"globals\\/typography?id=cad98b2\",\"counter_title_color\":\"globals\\/colors?id=6aba3dc\",\"counter_title_typography_typography\":\"globals\\/typography?id=e909243\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":441,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"counter_icon_bg_image\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"76f73a15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"434ab8b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"367\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/9-Team-Crew.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"74293a31\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Team Members\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=6aba3dc\",\"counter_num_color\":\"globals\\/colors?id=6fc639b\",\"counter_num_typography_typography\":\"globals\\/typography?id=cad98b2\",\"counter_title_color\":\"globals\\/colors?id=6aba3dc\",\"counter_title_typography_typography\":\"globals\\/typography?id=e909243\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":442,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"},\"counter_icon_bg_image\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"counter_icon_bg_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49c66132\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"221d38b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"71aa1a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f49b616\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6779999999999972715158946812152862548828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"9767222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Cases.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"10636f5b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"49e33254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68d7710d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis\",\"_id\":\"6226366\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo.\",\"_id\":\"26b7c29\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6aba3dc\",\"icon_typography_typography\":\"globals\\/typography?id=b859a05\",\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"413f9f54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3220000000000027284841053187847137451171875,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5f8f9984\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Brand Identity\",\"_id\":\"5fb0e99\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_bg\":{\"id\":\"368\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/G9.jpg\"},\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_active\":\"no\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"gradient\",\"__globals__\":{\"ekit_img_accordion_bg_active_color_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_img_accordion_bg_active_color_color\":\"globals\\/colors?id=b8b753d\",\"ekit_img_accordion_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_img_accordion_pup_up_icon_color\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=a88f8f1\"},\"ekit_img_accordion_bg_active_color_color_b\":\"#151515\",\"ekit_img_accordion_title_color\":\"#F9F9F9\",\"ekit_img_accordion_btn_typography_typography\":\"custom\",\"ekit_img_accordion_btn_typography_font_family\":\"Roboto\",\"ekit_img_accordion_btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_img_accordion_btn_typography_font_weight\":\"400\",\"ekit_img_accordion_btn_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_img_accordion_btn_text_color\":\"#5CD2B9\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#02010100\",\"ekit_img_accordion_pup_up_icon_color\":\"#F9F9F9\",\"action_btn_bg\":\"#5CD2B9\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"#F9F9F9\",\"action_btn_bg_hover\":\"#5CD2B9\",\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d686e6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"774c9f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1e701e99\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Web Design\",\"_id\":\"5fb0e99\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_bg\":{\"id\":\"369\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/G5.jpg\"},\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_active\":\"no\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"gradient\",\"__globals__\":{\"ekit_img_accordion_bg_active_color_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_img_accordion_bg_active_color_color\":\"globals\\/colors?id=b8b753d\",\"ekit_img_accordion_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_img_accordion_pup_up_icon_color\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=a88f8f1\"},\"ekit_img_accordion_bg_active_color_color_b\":\"#151515\",\"ekit_img_accordion_title_color\":\"#F9F9F9\",\"ekit_img_accordion_btn_typography_typography\":\"custom\",\"ekit_img_accordion_btn_typography_font_family\":\"Roboto\",\"ekit_img_accordion_btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_img_accordion_btn_typography_font_weight\":\"400\",\"ekit_img_accordion_btn_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_img_accordion_btn_text_color\":\"#5CD2B9\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#02010100\",\"ekit_img_accordion_pup_up_icon_color\":\"#F9F9F9\",\"action_btn_bg\":\"#5CD2B9\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"#F9F9F9\",\"action_btn_bg_hover\":\"#5CD2B9\",\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":true},{\"id\":\"71f5d62c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"18174712\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"UI & UX Design\",\"_id\":\"5fb0e99\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_bg\":{\"id\":\"370\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/G4.jpg\"},\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_active\":\"no\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"gradient\",\"__globals__\":{\"ekit_img_accordion_bg_active_color_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_img_accordion_bg_active_color_color\":\"globals\\/colors?id=b8b753d\",\"ekit_img_accordion_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_img_accordion_pup_up_icon_color\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=48147d0\"},\"ekit_img_accordion_bg_active_color_color_b\":\"#151515\",\"ekit_img_accordion_title_color\":\"#F9F9F9\",\"ekit_img_accordion_btn_typography_typography\":\"custom\",\"ekit_img_accordion_btn_typography_font_family\":\"Roboto\",\"ekit_img_accordion_btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_img_accordion_btn_typography_font_weight\":\"400\",\"ekit_img_accordion_btn_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_img_accordion_btn_text_color\":\"#5CD2B9\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#02010100\",\"ekit_img_accordion_pup_up_icon_color\":\"#F9F9F9\",\"action_btn_bg\":\"#5CD2B9\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"#F9F9F9\",\"action_btn_bg_hover\":\"#5CD2B9\",\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":true},{\"id\":\"633438ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4db6e37c\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Video Marketing\",\"_id\":\"5fb0e99\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_bg\":{\"id\":\"371\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/G1.jpg\"},\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_active\":\"no\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"gradient\",\"__globals__\":{\"ekit_img_accordion_bg_active_color_color_b\":\"globals\\/colors?id=349d81c\",\"ekit_img_accordion_bg_active_color_color\":\"globals\\/colors?id=b8b753d\",\"ekit_img_accordion_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_img_accordion_pup_up_icon_color\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"action_btn_bg_hover\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=6fc639b\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=a88f8f1\"},\"ekit_img_accordion_bg_active_color_color_b\":\"#151515\",\"ekit_img_accordion_title_color\":\"#F9F9F9\",\"ekit_img_accordion_btn_typography_typography\":\"custom\",\"ekit_img_accordion_btn_typography_font_family\":\"Roboto\",\"ekit_img_accordion_btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_img_accordion_btn_typography_font_weight\":\"400\",\"ekit_img_accordion_btn_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_img_accordion_btn_text_color\":\"#5CD2B9\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#02010100\",\"ekit_img_accordion_pup_up_icon_color\":\"#F9F9F9\",\"action_btn_bg\":\"#5CD2B9\",\"ekit_img_accordion_pup_up_icon_color_hover\":\"#F9F9F9\",\"action_btn_bg_hover\":\"#5CD2B9\",\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d563155\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"467313e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"693b4282\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Meet Expert {{Team}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR TEAM\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"488564ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1afa764d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7dd88418\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"a661cd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53103086\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7b0249ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"381\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/T1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b30d04b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5209e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mike Washoski\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e82d8a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Designer\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b05eb6f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58c5e64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b608f47\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"201fedeb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c0157bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fafce30\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2a852fc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"382\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/T3.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"699d60b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7ee9dc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexi Black\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6783ed5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Designer\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2008bdec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7bc8141e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c23c955\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"24863131\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7a2e55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b8a0cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2de682ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"383\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/T2.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"80f9495\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5dd5409f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hanna Smith\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23f181f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Designer\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f1e22f0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45dd2ab9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d91db12\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67f8c903\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"534be41b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63546a67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"35f6eb5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"384\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/T4.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"13d48ffd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1408bfb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kevin Widagdo\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10844bf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Designer\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7fb10262\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7dab3325\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e80297f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3100","443","_elementor_page_assets","a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("3101","443","_elementor_controls_usage","a:14:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:5:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:5;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;s:22:\"ekit_heading_title_tag\";i:4;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:5;s:22:\"ekit_heading_sub_title\";i:5;s:31:\"ekit_heading_sub_title_position\";i:5;s:26:\"ekit_heading_sub_title_tag\";i:5;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:5;s:24:\"ekit_heading_extra_title\";i:5;s:16:\"desciption_width\";i:5;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:5;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:5;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:5;s:17:\"pa_badge_bg_image\";i:5;s:26:\"pa_badge_bg_video_fallback\";i:5;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:3:{s:24:\"ekit_heading_title_color\";i:5;s:29:\"title_left_border_color_image\";i:5;s:38:\"title_left_border_color_video_fallback\";i:5;}s:40:\"ekit_heading_section_focused_title_style\";a:9:{s:32:\"ekit_heading_focused_title_color\";i:5;s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_image\";i:5;s:54:\"ekit_heading_focused_title_secondary_bg_video_fallback\";i:5;s:37:\"ekit_heading_title_secondary_bg_image\";i:5;s:46:\"ekit_heading_title_secondary_bg_video_fallback\";i:5;}s:36:\"ekit_heading_section_sub_title_style\";a:13:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:5;s:28:\"ekit_heading_sub_title_color\";i:5;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;s:41:\"ekit_heading_sub_title_secondary_bg_image\";i:5;s:50:\"ekit_heading_sub_title_secondary_bg_video_fallback\";i:5;s:46:\"ekit_heading_sub_title_border_color_left_image\";i:5;s:55:\"ekit_heading_sub_title_border_color_left_video_fallback\";i:5;s:47:\"ekit_heading_sub_title_border_color_right_image\";i:5;s:56:\"ekit_heading_sub_title_border_color_right_video_fallback\";i:5;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:5;s:28:\"ekit_heading_seperator_color\";i:5;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:2;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:18:\"animation_duration\";i:5;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:5;s:23:\"pa_cursor_bgColor_image\";i:5;s:32:\"pa_cursor_bgColor_video_fallback\";i:5;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:5;s:26:\"_background_video_fallback\";i:5;s:23:\"_background_hover_image\";i:5;s:32:\"_background_hover_video_fallback\";i:5;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:9;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:9;s:17:\"pa_badge_bg_image\";i:9;s:26:\"pa_badge_bg_video_fallback\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:9;s:22:\"typography_font_family\";i:9;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:9;s:22:\"typography_line_height\";i:9;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:9;s:18:\"animation_duration\";i:9;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:9;s:23:\"pa_cursor_bgColor_image\";i:9;s:32:\"pa_cursor_bgColor_video_fallback\";i:9;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:9;s:26:\"_background_video_fallback\";i:9;s:23:\"_background_hover_image\";i:9;s:32:\"_background_hover_video_fallback\";i:9;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:9;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:37;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:37;s:21:\"space_between_widgets\";i:14;s:16:\"content_position\";i:19;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:37;s:17:\"pa_badge_bg_image\";i:37;s:26:\"pa_badge_bg_video_fallback\";i:37;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:25;s:6:\"margin\";i:9;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:37;s:23:\"pa_cursor_bgColor_image\";i:37;s:32:\"pa_cursor_bgColor_video_fallback\";i:37;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:18:\"animation_duration\";i:8;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:9:{s:16:\"background_image\";i:37;s:25:\"background_video_fallback\";i:37;s:22:\"background_hover_image\";i:37;s:31:\"background_hover_video_fallback\";i:37;s:21:\"background_background\";i:4;s:19:\"background_position\";i:4;s:15:\"background_size\";i:4;s:23:\"background_color_b_stop\";i:4;s:24:\"background_gradient_type\";i:4;}s:26:\"section_background_overlay\";a:16:{s:24:\"background_overlay_image\";i:37;s:33:\"background_overlay_video_fallback\";i:37;s:30:\"background_overlay_hover_image\";i:37;s:39:\"background_overlay_hover_video_fallback\";i:37;s:29:\"background_overlay_background\";i:4;s:27:\"background_overlay_position\";i:4;s:23:\"background_overlay_size\";i:4;s:26:\"background_overlay_opacity\";i:4;s:22:\"css_filters_brightness\";i:4;s:20:\"css_filters_saturate\";i:4;s:35:\"background_overlay_hover_background\";i:4;s:33:\"background_overlay_hover_position\";i:4;s:29:\"background_overlay_hover_size\";i:4;s:32:\"background_overlay_hover_opacity\";i:4;s:28:\"css_filters_hover_brightness\";i:4;s:35:\"background_overlay_hover_transition\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:12;s:16:\"background_image\";i:17;s:19:\"background_position\";i:6;s:15:\"background_size\";i:6;s:25:\"background_video_fallback\";i:17;s:22:\"background_hover_image\";i:17;s:31:\"background_hover_video_fallback\";i:17;s:21:\"background_attachment\";i:4;}s:26:\"section_background_overlay\";a:9:{s:29:\"background_overlay_background\";i:5;s:24:\"background_overlay_image\";i:17;s:33:\"background_overlay_video_fallback\";i:17;s:30:\"background_overlay_hover_image\";i:17;s:39:\"background_overlay_hover_video_fallback\";i:17;s:31:\"background_overlay_color_b_stop\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:26:\"background_overlay_opacity\";i:2;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:8;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:17;s:23:\"pa_cursor_bgColor_image\";i:17;s:32:\"pa_cursor_bgColor_video_fallback\";i:17;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:1;}}s:6:\"layout\";a:3:{s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:17;s:17:\"pa_badge_bg_image\";i:17;s:26:\"pa_badge_bg_video_fallback\";i:17;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:14;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:6:\"layout\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_image\";a:1:{s:5:\"image\";i:14;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:14;s:17:\"pa_badge_bg_image\";i:14;s:26:\"pa_badge_bg_video_fallback\";i:14;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:7:{s:5:\"width\";i:9;s:22:\"css_filters_css_filter\";i:10;s:22:\"css_filters_brightness\";i:5;s:20:\"css_filters_saturate\";i:9;s:28:\"css_filters_hover_css_filter\";i:9;s:27:\"background_hover_transition\";i:9;s:28:\"css_filters_hover_brightness\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:5;s:8:\"_padding\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:14;s:23:\"pa_cursor_bgColor_image\";i:14;s:32:\"pa_cursor_bgColor_video_fallback\";i:14;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:14;s:26:\"_background_video_fallback\";i:14;s:23:\"_background_hover_image\";i:14;s:32:\"_background_hover_video_fallback\";i:14;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:14;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:10:\"title_size\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:2:{s:8:\"position\";i:2;s:18:\"title_bottom_space\";i:2;}s:19:\"section_style_image\";a:1:{s:10:\"image_size\";i:2;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:28:\"title_typography_line_height\";i:2;s:34:\"description_typography_font_family\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_button\";a:4:{s:4:\"text\";i:1;s:10:\"icon_align\";i:1;s:11:\"icon_indent\";i:1;s:4:\"size\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:25:\"background_gradient_angle\";i:1;s:15:\"hover_animation\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:12:\"align_mobile\";i:1;s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:20:\"elementskit-icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"ekit_icon_box\";a:4:{s:32:\"ekit_icon_box_enable_header_icon\";i:4;s:24:\"ekit_icon_box_title_text\";i:4;s:30:\"ekit_icon_box_description_text\";i:4;s:26:\"ekit_icon_box_header_image\";i:4;}s:30:\"ekit_icon_box_section_settings\";a:1:{s:24:\"ekit_icon_box_title_size\";i:4;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:4;s:17:\"pa_badge_bg_image\";i:4;s:26:\"pa_badge_bg_video_fallback\";i:4;}}s:5:\"style\";a:6:{s:38:\"ekit_icon_box_section_background_style\";a:14:{s:41:\"ekit_icon_box_infobox_bg_group_background\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_color\";i:4;s:40:\"ekit_icon_box_iocnbox_border_group_width\";i:4;s:36:\"ekit_icon_box_infobox_border_radious\";i:4;s:47:\"ekit_icon_box_infobox_bg_hover_group_background\";i:4;s:42:\"ekit_icon_box_infobox_bg_hover_group_color\";i:2;s:44:\"ekit_icon_box_infobox_bg_hover_group_color_b\";i:4;s:38:\"ekit_icon_box_info_box_hover_animation\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_image\";i:4;s:32:\"ekit_icon_box_infobox_bg_padding\";i:4;s:45:\"ekit_icon_box_infobox_bg_group_video_fallback\";i:4;s:42:\"ekit_icon_box_infobox_bg_hover_group_image\";i:4;s:51:\"ekit_icon_box_infobox_bg_hover_group_video_fallback\";i:4;s:38:\"ekit_icon_box_infobox_bg_group_color_b\";i:2;}s:31:\"ekit_icon_section_style_content\";a:13:{s:27:\"ekit_icon_description_color\";i:4;s:33:\"ekit_icon_description_color_hover\";i:4;s:49:\"ekit_icon_description_typography_group_typography\";i:3;s:50:\"ekit_icon_description_typography_group_font_family\";i:3;s:50:\"ekit_icon_description_typography_group_font_weight\";i:3;s:50:\"ekit_icon_description_typography_group_line_height\";i:3;s:21:\"ekit_icon_title_color\";i:3;s:27:\"ekit_icon_title_color_hover\";i:3;s:43:\"ekit_icon_title_typography_group_typography\";i:2;s:44:\"ekit_icon_title_typography_group_font_family\";i:2;s:42:\"ekit_icon_title_typography_group_font_size\";i:2;s:44:\"ekit_icon_title_typography_group_font_weight\";i:2;s:44:\"ekit_icon_title_typography_group_line_height\";i:2;}s:32:\"ekit_icon_box_section_style_icon\";a:3:{s:32:\"ekit_icon_box_icon_primary_color\";i:4;s:25:\"ekit_icon_box_icon_height\";i:4;s:24:\"ekit_icon_box_icon_width\";i:4;}s:27:\"ekit_icon_box_section_style\";a:4:{s:40:\"ekit_icon_box_btn_background_group_image\";i:4;s:49:\"ekit_icon_box_btn_background_group_video_fallback\";i:4;s:46:\"ekit_icon_box_btn_background_hover_group_image\";i:4;s:55:\"ekit_icon_box_btn_background_hover_group_video_fallback\";i:4;}s:37:\"ekit_icon_box_section_bg_ovelry_style\";a:7:{s:24:\"ekit_icon_box_show_image\";i:4;s:38:\"ekit_icon_box_image_ovelry_color_image\";i:4;s:47:\"ekit_icon_box_image_ovelry_color_video_fallback\";i:4;s:35:\"ekit_icon_box_bg_ovelry_color_image\";i:4;s:44:\"ekit_icon_box_bg_ovelry_color_video_fallback\";i:4;s:38:\"ekit_icon_box_bg_ovelry_color_hv_image\";i:4;s:47:\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\";i:4;}s:29:\"ekit_icon_box_badge_style_tab\";a:2:{s:36:\"ekit_icon_box_badge_background_image\";i:4;s:45:\"ekit_icon_box_badge_background_video_fallback\";i:4;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:4;s:23:\"pa_cursor_bgColor_image\";i:4;s:32:\"pa_cursor_bgColor_video_fallback\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:10:\"pp-counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:4;s:12:\"pp_icon_type\";i:4;s:4:\"icon\";i:4;s:13:\"counter_title\";i:4;s:14:\"counter_layout\";i:4;s:14:\"title_html_tag\";i:4;s:10:\"icon_image\";i:4;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:4;s:17:\"pa_badge_bg_image\";i:4;s:26:\"pa_badge_bg_video_fallback\";i:4;}}s:5:\"style\";a:2:{s:26:\"section_counter_icon_style\";a:4:{s:17:\"counter_icon_size\";i:4;s:21:\"counter_icon_rotation\";i:4;s:21:\"counter_icon_bg_image\";i:4;s:30:\"counter_icon_bg_video_fallback\";i:4;}s:27:\"section_counter_title_style\";a:1:{s:20:\"counter_title_margin\";i:4;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:4;s:23:\"pa_cursor_bgColor_image\";i:4;s:32:\"pa_cursor_bgColor_video_fallback\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:7;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:7;s:17:\"pa_badge_bg_image\";i:7;s:26:\"pa_badge_bg_video_fallback\";i:7;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:7;s:23:\"pa_cursor_bgColor_image\";i:7;s:32:\"pa_cursor_bgColor_video_fallback\";i:7;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:7;s:26:\"_background_video_fallback\";i:7;s:23:\"_background_hover_image\";i:7;s:32:\"_background_hover_video_fallback\";i:7;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:7;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:27:\"elementskit-image-accordion\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:30:\"ekit_img_accordion_content_tab\";a:2:{s:24:\"ekit_img_accordion_items\";i:4;s:15:\"active_behavior\";i:4;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:4;s:17:\"pa_badge_bg_image\";i:4;s:26:\"pa_badge_bg_video_fallback\";i:4;}}s:5:\"style\";a:4:{s:35:\"ekit_img_accordion_general_settings\";a:5:{s:29:\"ekit_img_accordion_min_height\";i:4;s:45:\"ekit_img_accordion_bg_active_color_background\";i:4;s:42:\"ekit_img_accordion_bg_active_color_color_b\";i:4;s:40:\"ekit_img_accordion_bg_active_color_image\";i:4;s:49:\"ekit_img_accordion_bg_active_color_video_fallback\";i:4;}s:55:\"ekit_img_accordion_section_img_accordion_title_settings\";a:1:{s:30:\"ekit_img_accordion_title_color\";i:4;}s:40:\"ekit_img_accordion_button_style_settings\";a:10:{s:44:\"ekit_img_accordion_btn_typography_typography\";i:4;s:45:\"ekit_img_accordion_btn_typography_font_family\";i:4;s:45:\"ekit_img_accordion_btn_typography_font_weight\";i:4;s:45:\"ekit_img_accordion_btn_typography_line_height\";i:4;s:33:\"ekit_img_accordion_btn_text_color\";i:4;s:43:\"ekit_img_accordion_btn_bg_color_group_color\";i:4;s:43:\"ekit_img_accordion_btn_bg_color_group_image\";i:4;s:52:\"ekit_img_accordion_btn_bg_color_group_video_fallback\";i:4;s:49:\"ekit_img_accordion_btn_bg_hover_color_group_image\";i:4;s:58:\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\";i:4;}s:32:\"ekit_img_accordion_style_section\";a:4:{s:36:\"ekit_img_accordion_pup_up_icon_color\";i:4;s:13:\"action_btn_bg\";i:4;s:42:\"ekit_img_accordion_pup_up_icon_color_hover\";i:4;s:19:\"action_btn_bg_hover\";i:4;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:4;s:23:\"pa_cursor_bgColor_image\";i:4;s:32:\"pa_cursor_bgColor_video_fallback\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:11:\"header_size\";i:8;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:8;s:17:\"pa_badge_bg_image\";i:8;s:26:\"pa_badge_bg_video_fallback\";i:8;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:8;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:8;s:23:\"pa_cursor_bgColor_image\";i:8;s:32:\"pa_cursor_bgColor_video_fallback\";i:8;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:8;s:26:\"_background_video_fallback\";i:8;s:23:\"_background_hover_image\";i:8;s:32:\"_background_hover_video_fallback\";i:8;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:8;s:22:\"typography_line_height\";i:8;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:4;s:5:\"align\";i:4;s:12:\"align_mobile\";i:4;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:4;s:17:\"pa_badge_bg_image\";i:4;s:26:\"pa_badge_bg_video_fallback\";i:4;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:4:{s:10:\"icon_color\";i:4;s:18:\"icon_primary_color\";i:4;s:20:\"icon_secondary_color\";i:4;s:9:\"icon_size\";i:4;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:4;s:15:\"hover_animation\";i:4;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:4;s:23:\"pa_cursor_bgColor_image\";i:4;s:32:\"pa_cursor_bgColor_video_fallback\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}");
INSERT INTO 7ja_postmeta VALUES("3102","443","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("3103","443","envato_tk_source_kit","348");
INSERT INTO 7ja_postmeta VALUES("3104","443","envato_tk_source_index","3");
INSERT INTO 7ja_postmeta VALUES("3123","147","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("3151","448","_wp_attached_file","2023/01/IpadYellowTrans-1.png");
INSERT INTO 7ja_postmeta VALUES("3152","448","_wp_attachment_metadata","a:6:{s:5:\"width\";i:645;s:6:\"height\";i:815;s:4:\"file\";s:29:\"2023/01/IpadYellowTrans-1.png\";s:8:\"filesize\";i:83017;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"IpadYellowTrans-1-237x300.png\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"IpadYellowTrans-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:25163;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3153","449","_wp_attached_file","2023/01/Blueprint-Financial.jpg");
INSERT INTO 7ja_postmeta VALUES("3154","449","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:31:\"2023/01/Blueprint-Financial.jpg\";s:8:\"filesize\";i:44410;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Blueprint-Financial-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5182;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Blueprint-Financial-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29023;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Blueprint-Financial-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2007;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Blueprint-Financial-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19670;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"Blueprint-Financial-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53052;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3155","450","_wp_attached_file","2023/01/GW-BG-Template-1.png");
INSERT INTO 7ja_postmeta VALUES("3156","450","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1050;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2023/01/GW-BG-Template-1.png\";s:8:\"filesize\";i:277177;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"GW-BG-Template-1-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71658;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"GW-BG-Template-1-1024x585.png\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:756551;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"GW-BG-Template-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:43140;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"GW-BG-Template-1-768x439.png\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:443367;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3167","452","_wp_attached_file","2023/01/Pianoonbeach-1.jpeg");
INSERT INTO 7ja_postmeta VALUES("3168","452","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2023/01/Pianoonbeach-1.jpeg\";s:8:\"filesize\";i:170341;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Pianoonbeach-1-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7889;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Pianoonbeach-1-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59324;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Pianoonbeach-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3880;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Pianoonbeach-1-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35705;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"Pianoonbeach-1-1536x864.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121709;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3169","453","_wp_attached_file","2023/01/Pints-and-Peaks.png");
INSERT INTO 7ja_postmeta VALUES("3170","453","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1896;s:6:\"height\";i:908;s:4:\"file\";s:27:\"2023/01/Pints-and-Peaks.png\";s:8:\"filesize\";i:633874;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Pints-and-Peaks-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75134;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Pints-and-Peaks-1024x490.png\";s:5:\"width\";i:1024;s:6:\"height\";i:490;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:780376;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Pints-and-Peaks-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Pints-and-Peaks-768x368.png\";s:5:\"width\";i:768;s:6:\"height\";i:368;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:447041;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"Pints-and-Peaks-1536x736.png\";s:5:\"width\";i:1536;s:6:\"height\";i:736;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1664834;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3171","454","_wp_attached_file","2023/01/10-essentials-1-768x1024-1.jpeg");
INSERT INTO 7ja_postmeta VALUES("3172","454","_wp_attachment_metadata","a:6:{s:5:\"width\";i:768;s:6:\"height\";i:1024;s:4:\"file\";s:39:\"2023/01/10-essentials-1-768x1024-1.jpeg\";s:8:\"filesize\";i:288069;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"10-essentials-1-768x1024-1-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"10-essentials-1-768x1024-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3173","455","_wp_attached_file","2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg");
INSERT INTO 7ja_postmeta VALUES("3174","455","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:51:\"2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\";s:8:\"filesize\";i:131555;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Summer-Hiking-Series-Correct-1024x576-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25095;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Summer-Hiking-Series-Correct-1024x576-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:17240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Summer-Hiking-Series-Correct-1024x576-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80816;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}");
INSERT INTO 7ja_postmeta VALUES("3177","319","ekit_post_views_count","319");
INSERT INTO 7ja_postmeta VALUES("3178","456","_wp_attached_file","2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png");
INSERT INTO 7ja_postmeta VALUES("3179","456","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1750;s:6:\"height\";i:908;s:4:\"file\";s:55:\"2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\";s:8:\"filesize\";i:628128;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-01-27-12.09.47-PM-Display-2-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33592;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Screenshot-2023-01-27-12.09.47-PM-Display-2-1024x531.png\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:222676;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-01-27-12.09.47-PM-Display-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:19424;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-01-27-12.09.47-PM-Display-2-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141025;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"Screenshot-2023-01-27-12.09.47-PM-Display-2-1536x797.png\";s:5:\"width\";i:1536;s:6:\"height\";i:797;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:442484;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3180","457","_wp_attached_file","2023/01/Screenshot-2023-01-27-12.13.16-PM-Display-2.png");
INSERT INTO 7ja_postmeta VALUES("3181","457","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1821;s:6:\"height\";i:879;s:4:\"file\";s:55:\"2023/01/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\";s:8:\"filesize\";i:323539;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-01-27-12.13.16-PM-Display-2-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24756;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Screenshot-2023-01-27-12.13.16-PM-Display-2-1024x494.png\";s:5:\"width\";i:1024;s:6:\"height\";i:494;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159657;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-01-27-12.13.16-PM-Display-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:17109;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-01-27-12.13.16-PM-Display-2-768x371.png\";s:5:\"width\";i:768;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104150;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"Screenshot-2023-01-27-12.13.16-PM-Display-2-1536x741.png\";s:5:\"width\";i:1536;s:6:\"height\";i:741;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:283762;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3182","458","_wp_attached_file","2023/01/Gokyo-Lake-1.jpg");
INSERT INTO 7ja_postmeta VALUES("3183","458","_wp_attachment_metadata","a:6:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/01/Gokyo-Lake-1.jpg\";s:8:\"filesize\";i:49179;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Gokyo-Lake-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15420;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Gokyo-Lake-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:7400;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Gokyo-Lake-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3186","460","_wp_attached_file","2023/01/Hike-video.mp4");
INSERT INTO 7ja_postmeta VALUES("3187","460","_wp_attachment_metadata","a:10:{s:8:\"filesize\";i:15250383;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:28;s:16:\"length_formatted\";s:4:\"0:28\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:-2082844800;}");
INSERT INTO 7ja_postmeta VALUES("3188","461","_wp_attached_file","2023/01/hike-walkway-857x1024-1.jpg");
INSERT INTO 7ja_postmeta VALUES("3189","461","_wp_attachment_metadata","a:6:{s:5:\"width\";i:857;s:6:\"height\";i:1024;s:4:\"file\";s:35:\"2023/01/hike-walkway-857x1024-1.jpg\";s:8:\"filesize\";i:222975;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"hike-walkway-857x1024-1-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"hike-walkway-857x1024-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:9572;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"hike-walkway-857x1024-1-768x918.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:918;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159185;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}");
INSERT INTO 7ja_postmeta VALUES("3452","487","_wp_attached_file","2023/01/Screenshot-2023-01-29-11.01.56-AM-Display-1.png");
INSERT INTO 7ja_postmeta VALUES("3453","487","_wp_attachment_metadata","a:6:{s:5:\"width\";i:595;s:6:\"height\";i:606;s:4:\"file\";s:55:\"2023/01/Screenshot-2023-01-29-11.01.56-AM-Display-1.png\";s:8:\"filesize\";i:533761;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-01-29-11.01.56-AM-Display-1-295x300.png\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138562;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-01-29-11.01.56-AM-Display-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:42245;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3454","488","_wp_attached_file","2023/01/UnlimitedOutdoors_WEB4Color1-1-1.jpg");
INSERT INTO 7ja_postmeta VALUES("3455","488","_wp_attachment_metadata","a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:44:\"2023/01/UnlimitedOutdoors_WEB4Color1-1-1.jpg\";s:8:\"filesize\";i:29157;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"UnlimitedOutdoors_WEB4Color1-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17906;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"UnlimitedOutdoors_WEB4Color1-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5933;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}");
INSERT INTO 7ja_postmeta VALUES("3664","287","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("3674","287","_yoast_wpseo_content_score","90");
INSERT INTO 7ja_postmeta VALUES("3706","514","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3707","514","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("3708","514","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3709","514","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3710","515","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3711","515","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("3712","515","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3713","515","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3714","514","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("3715","514","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("3716","514","_elementor_data","[{\"id\":\"6b90c36b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4b1451ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"24273848\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3717","516","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3718","516","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("3719","516","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3720","516","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3721","516","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("3722","516","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("3723","516","_elementor_data","[{\"id\":\"6b90c36b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4b1451ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"24273848\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3724","514","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("3725","514","_elementor_controls_usage","a:3:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:2:{s:18:\"ekit_heading_title\";i:1;s:22:\"ekit_heading_title_tag\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:1;s:22:\"ekit_heading_sub_title\";i:1;s:31:\"ekit_heading_sub_title_position\";i:1;s:26:\"ekit_heading_sub_title_tag\";i:1;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:1;s:24:\"ekit_heading_extra_title\";i:1;s:16:\"desciption_width\";i:1;}s:30:\"ekit_heading_section_seperator\";a:2:{s:28:\"ekit_heading_seperator_style\";i:1;s:28:\"ekit_heading_seperator_image\";i:1;}}s:5:\"style\";a:4:{s:32:\"ekit_heading_section_title_style\";a:4:{s:24:\"ekit_heading_title_color\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:28:\"ekit_heading_sub_title_color\";i:1;s:36:\"ekit_heading_use_sub_title_text_fill\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:1:{s:29:\"ekit_heading_seperator_height\";i:1;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("3726","517","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3727","517","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("3728","517","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3729","517","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3730","518","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3731","518","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("3732","518","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3733","518","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3734","517","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("3735","517","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("3736","517","_elementor_data","[{\"id\":\"63475324\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"31a24fd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"78762505\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"2436b1a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1094b66f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"38c067d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"ba4f8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cd1a40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cca388f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7c85678d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69aaae88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"707e95a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"2be3eac1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5b2e441a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"71c7772c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"b23779f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ff2a761\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand and everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6107dd17\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2e24ff14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3737","519","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3738","519","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("3739","519","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3740","519","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3741","519","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("3742","519","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("3743","519","_elementor_data","[{\"id\":\"63475324\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"31a24fd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"78762505\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"2436b1a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1094b66f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"38c067d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"ba4f8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cd1a40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cca388f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7c85678d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69aaae88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"707e95a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"2be3eac1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5b2e441a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"71c7772c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"b23779f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ff2a761\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand and everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6107dd17\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2e24ff14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3744","517","_elementor_page_assets","a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("3745","517","_elementor_controls_usage","a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:7:{s:5:\"width\";i:2;s:22:\"css_filters_css_filter\";i:2;s:22:\"css_filters_brightness\";i:2;s:20:\"css_filters_saturate\";i:2;s:28:\"css_filters_hover_css_filter\";i:2;s:28:\"css_filters_hover_brightness\";i:2;s:27:\"background_hover_transition\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:16:\"_section_masking\";a:5:{s:12:\"_mask_switch\";i:2;s:11:\"_mask_shape\";i:2;s:10:\"_mask_size\";i:2;s:14:\"_mask_position\";i:1;s:16:\"_mask_position_x\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:4;s:21:\"space_between_widgets\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:23:\"background_color_b_stop\";i:2;s:24:\"background_gradient_type\";i:2;}s:26:\"section_background_overlay\";a:14:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:2;s:23:\"background_overlay_size\";i:2;s:26:\"background_overlay_opacity\";i:2;s:22:\"css_filters_brightness\";i:2;s:20:\"css_filters_saturate\";i:2;s:35:\"background_overlay_hover_background\";i:2;s:30:\"background_overlay_hover_image\";i:2;s:33:\"background_overlay_hover_position\";i:2;s:29:\"background_overlay_hover_size\";i:2;s:32:\"background_overlay_hover_opacity\";i:2;s:28:\"css_filters_hover_brightness\";i:2;s:35:\"background_overlay_hover_transition\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:11:\"header_size\";i:4;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:4;s:22:\"typography_line_height\";i:4;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("3746","520","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3747","520","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("3748","520","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3749","520","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3750","521","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3751","521","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("3752","521","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3753","521","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3754","520","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("3755","520","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("3756","520","_elementor_data","[{\"id\":\"15394680\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_b\":\"#000000\",\"content_width\":{\"unit\":\"px\",\"size\":619,\"sizes\":[]}},\"elements\":[{\"id\":\"78ca6f7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1f77efbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"303204b8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":100,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Projects\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":395,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"57afc9d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"40ee1d65\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e3a459e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Customers\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":396,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3757","522","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3758","522","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("3759","522","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3760","522","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3761","522","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("3762","522","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("3763","522","_elementor_data","[{\"id\":\"15394680\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_b\":\"#000000\",\"content_width\":{\"unit\":\"px\",\"size\":619,\"sizes\":[]}},\"elements\":[{\"id\":\"78ca6f7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1f77efbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"303204b8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":100,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Projects\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":395,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"57afc9d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"40ee1d65\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e3a459e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Customers\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":396,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3764","520","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("3765","520","_elementor_controls_usage","a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:2;}}}}s:10:\"pp-counter\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:2;s:12:\"pp_icon_type\";i:2;s:4:\"icon\";i:2;s:13:\"counter_title\";i:2;s:14:\"counter_layout\";i:2;s:14:\"title_html_tag\";i:2;s:10:\"icon_image\";i:2;}}s:5:\"style\";a:3:{s:26:\"section_counter_icon_style\";a:2:{s:17:\"counter_icon_size\";i:2;s:21:\"counter_icon_rotation\";i:2;}s:27:\"section_counter_title_style\";a:1:{s:20:\"counter_title_margin\";i:2;}s:25:\"section_counter_num_style\";a:1:{s:17:\"counter_num_color\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:21:\"space_between_widgets\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("3798","526","_menu_item_type","custom");
INSERT INTO 7ja_postmeta VALUES("3799","526","_menu_item_menu_item_parent","0");
INSERT INTO 7ja_postmeta VALUES("3800","526","_menu_item_object_id","526");
INSERT INTO 7ja_postmeta VALUES("3801","526","_menu_item_object","custom");
INSERT INTO 7ja_postmeta VALUES("3802","526","_menu_item_target","");
INSERT INTO 7ja_postmeta VALUES("3803","526","_menu_item_classes","a:1:{i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("3804","526","_menu_item_xfn","");
INSERT INTO 7ja_postmeta VALUES("3805","526","_menu_item_url","#about");
INSERT INTO 7ja_postmeta VALUES("3807","294","_wp_old_date","2022-12-08");
INSERT INTO 7ja_postmeta VALUES("3808","298","_wp_old_date","2022-12-08");
INSERT INTO 7ja_postmeta VALUES("3809","297","_wp_old_date","2022-12-08");
INSERT INTO 7ja_postmeta VALUES("3810","318","_wp_old_date","2022-12-08");
INSERT INTO 7ja_postmeta VALUES("3811","314","_wp_old_date","2022-12-08");
INSERT INTO 7ja_postmeta VALUES("3871","536","_wp_attached_file","2023/01/portrait-of-a-woman-with-artistic-make-up.jpg");
INSERT INTO 7ja_postmeta VALUES("3872","536","_wp_attachment_metadata","a:6:{s:5:\"width\";i:294;s:6:\"height\";i:52;s:4:\"file\";s:53:\"2023/01/portrait-of-a-woman-with-artistic-make-up.jpg\";s:8:\"filesize\";i:6604;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"portrait-of-a-woman-with-artistic-make-up-150x52.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("3873","537","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3874","537","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("3875","537","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3876","537","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3877","537","_elementor_data","[{\"id\":\"48490e5a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11be6c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"67e296c0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Testi}}monials\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=44d4208\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2582ea83\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ Testimonials<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56f3e8f6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"390\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a8a993c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7e5f6017\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What {{Client}} Says.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"_animation\":\"fadeInUp\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"75b65c8c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd27d32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6bd6858e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"37d7341\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"3de5ea2\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"40b37d0\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_testimonial_description_active_color\":\"globals\\/colors?id=a8362ae\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_title_separator_color\":\"\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=e909243\",\"ekit_testimonial_designation_normal_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_designation_active_color\":\"globals\\/colors?id=6fc639b\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidetoshow\":3,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"7df18cba\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"37d7341\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"3de5ea2\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"40b37d0\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_testimonial_description_active_color\":\"globals\\/colors?id=a8362ae\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_title_separator_color\":\"\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=e909243\",\"ekit_testimonial_designation_normal_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_designation_active_color\":\"globals\\/colors?id=6fc639b\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidetoshow\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3878","538","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("3879","538","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("3880","538","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3881","538","_elementor_pro_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("3882","538","_elementor_data","[{\"id\":\"48490e5a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11be6c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"67e296c0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Testi}}monials\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=44d4208\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2582ea83\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ Testimonials<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56f3e8f6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"390\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a8a993c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7e5f6017\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What {{Client}} Says.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"_animation\":\"fadeInUp\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"75b65c8c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd27d32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6bd6858e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"37d7341\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"3de5ea2\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"40b37d0\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_testimonial_description_active_color\":\"globals\\/colors?id=a8362ae\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_title_separator_color\":\"\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=e909243\",\"ekit_testimonial_designation_normal_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_designation_active_color\":\"globals\\/colors?id=6fc639b\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidetoshow\":3,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"7df18cba\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"37d7341\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"3de5ea2\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Adam Smith\",\"designation\":\"Businessman\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0\",\"client_photo\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"40b37d0\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=a8362ae\",\"ekit_testimonial_description_active_color\":\"globals\\/colors?id=a8362ae\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=b859a05\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_title_separator_color\":\"\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=e909243\",\"ekit_testimonial_designation_normal_color\":\"globals\\/colors?id=6fc639b\",\"ekit_testimonial_designation_active_color\":\"globals\\/colors?id=6fc639b\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidetoshow\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("3883","537","_elementor_page_assets","a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("3884","537","_elementor_controls_usage","a:6:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:5:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;s:22:\"ekit_heading_title_tag\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:3:{s:24:\"ekit_heading_title_color\";i:2;s:29:\"title_left_border_color_image\";i:2;s:38:\"title_left_border_color_video_fallback\";i:2;}s:40:\"ekit_heading_section_focused_title_style\";a:9:{s:32:\"ekit_heading_focused_title_color\";i:2;s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_image\";i:2;s:54:\"ekit_heading_focused_title_secondary_bg_video_fallback\";i:2;s:37:\"ekit_heading_title_secondary_bg_image\";i:2;s:46:\"ekit_heading_title_secondary_bg_video_fallback\";i:2;}s:36:\"ekit_heading_section_sub_title_style\";a:13:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;s:28:\"ekit_heading_sub_title_color\";i:2;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;s:41:\"ekit_heading_sub_title_secondary_bg_image\";i:2;s:50:\"ekit_heading_sub_title_secondary_bg_video_fallback\";i:2;s:46:\"ekit_heading_sub_title_border_color_left_image\";i:2;s:55:\"ekit_heading_sub_title_border_color_left_video_fallback\";i:2;s:47:\"ekit_heading_sub_title_border_color_right_image\";i:2;s:56:\"ekit_heading_sub_title_border_color_right_video_fallback\";i:2;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:2;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:2;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:21:\"space_between_widgets\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:2;s:22:\"background_hover_image\";i:2;s:31:\"background_hover_video_fallback\";i:2;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:2;s:30:\"background_overlay_hover_image\";i:2;s:39:\"background_overlay_hover_video_fallback\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:25:\"background_video_fallback\";i:2;s:22:\"background_hover_image\";i:2;s:31:\"background_hover_video_fallback\";i:2;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:2;s:30:\"background_overlay_hover_image\";i:2;s:39:\"background_overlay_hover_video_fallback\";i:2;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}}s:6:\"layout\";a:1:{s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:23:\"elementskit-testimonial\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:41:\"ekit_testimonial_layout_section_tab_style\";a:1:{s:22:\"ekit_testimonial_style\";i:2;}s:34:\"ekit_testimonial_section_tab_style\";a:2:{s:30:\"ekit_testimonial_rating_enable\";i:2;s:21:\"ekit_testimonial_data\";i:2;}s:32:\"ekit_testimonial_layout_settings\";a:1:{s:28:\"ekit_testimonial_slidetoshow\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:5:\"style\";a:7:{s:31:\"ekit_testimonial_section_layout\";a:10:{s:30:\"ekit_testimonial_layout_margin\";i:2;s:31:\"ekit_testimonial_layout_padding\";i:2;s:45:\"ekit_testimonial_layout_background_background\";i:2;s:40:\"ekit_testimonial_layout_background_color\";i:2;s:40:\"ekit_testimonial_layout_background_image\";i:2;s:49:\"ekit_testimonial_layout_background_video_fallback\";i:2;s:47:\"ekit_testimonial_layout_active_background_image\";i:2;s:56:\"ekit_testimonial_layout_active_background_video_fallback\";i:2;s:47:\"ekit_testimonial_active_layout_background_image\";i:2;s:56:\"ekit_testimonial_active_layout_background_video_fallback\";i:2;}s:37:\"ekit_testimonial_section_wraper_style\";a:2:{s:52:\"ekit_testimonial_section_wraper_horizontal_alignment\";i:2;s:39:\"ekit_testimonial_section_wraper_padding\";i:2;}s:36:\"ekit_testimonial_content_description\";a:7:{s:34:\"ekit_testimonial_description_color\";i:2;s:41:\"ekit_testimonial_description_active_color\";i:2;s:50:\"ekit_testimonial_description_typography_typography\";i:2;s:51:\"ekit_testimonial_description_typography_font_family\";i:2;s:51:\"ekit_testimonial_description_typography_font_weight\";i:2;s:51:\"ekit_testimonial_description_typography_line_height\";i:2;s:35:\"ekit_testimonial_description_margin\";i:2;}s:41:\"ekit_testimonial_section_wathermark_style\";a:10:{s:41:\"ekit_testimonial_section_wathermark_color\";i:2;s:48:\"ekit_testimonial_section_wathermark_icon_padding\";i:2;s:63:\"ekit_testimonial_section_wathermark_icon_badge_background_image\";i:2;s:72:\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\";i:2;s:69:\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\";i:2;s:78:\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\";i:2;s:70:\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\";i:2;s:79:\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\";i:2;s:58:\"ekit_testimonial_section_wathermark_badge_background_image\";i:2;s:67:\"ekit_testimonial_section_wathermark_badge_background_video_fallback\";i:2;}s:39:\"ekit_testimonial_client_content_section\";a:3:{s:34:\"ekit_testimonial_client_image_size\";i:2;s:46:\"ekit_testimonial_client_image_background_image\";i:2;s:55:\"ekit_testimonial_client_image_background_video_fallback\";i:2;}s:31:\"ekit_testimonial_client_dot_tab\";a:4:{s:44:\"ekit_testimonial_client_dot_background_image\";i:2;s:53:\"ekit_testimonial_client_dot_background_video_fallback\";i:2;s:51:\"ekit_testimonial_client_dot_active_background_image\";i:2;s:60:\"ekit_testimonial_client_dot_active_background_video_fallback\";i:2;}s:30:\"ekit_testimonial_nav_style_tab\";a:4:{s:44:\"ekit_testimonial_nav_background_normal_image\";i:2;s:53:\"ekit_testimonial_nav_background_normal_video_fallback\";i:2;s:43:\"ekit_testimonial_nav_background_hover_image\";i:2;s:52:\"ekit_testimonial_nav_background_hover_video_fallback\";i:2;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}}");
INSERT INTO 7ja_postmeta VALUES("3885","537","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("3886","537","envato_tk_source_kit","348");
INSERT INTO 7ja_postmeta VALUES("3887","537","envato_tk_source_index","13");
INSERT INTO 7ja_postmeta VALUES("3910","131","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4078","556","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4079","556","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4080","556","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4081","556","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4082","557","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4083","557","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4084","557","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4085","557","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4086","556","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4087","556","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4088","556","_elementor_data","[{\"id\":\"24cdc0bf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"5f158967\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3eb96888\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"43f298f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full throttle digital marketing strategies, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1efd7404\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3aa57ad4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1e8367a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"111f4675\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"42e8b990\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"4b7db85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"16172e9d\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"57625b2a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"e0510e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"4c152cda\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"3e6f9dcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"21bcf5be\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4089","558","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4090","558","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4091","558","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4092","558","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4093","558","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4094","558","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4095","558","_elementor_data","[{\"id\":\"24cdc0bf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"5f158967\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3eb96888\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"43f298f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full throttle digital marketing strategies, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1efd7404\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3aa57ad4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1e8367a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"111f4675\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"42e8b990\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"4b7db85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"16172e9d\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"57625b2a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"e0510e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"4c152cda\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"3e6f9dcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"21bcf5be\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4096","556","_elementor_page_assets","a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("4097","556","_elementor_controls_usage","a:6:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:2:{s:18:\"ekit_heading_title\";i:1;s:22:\"ekit_heading_title_tag\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:1;s:22:\"ekit_heading_sub_title\";i:1;s:31:\"ekit_heading_sub_title_position\";i:1;s:26:\"ekit_heading_sub_title_tag\";i:1;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:1;s:24:\"ekit_heading_extra_title\";i:1;s:16:\"desciption_width\";i:1;}s:30:\"ekit_heading_section_seperator\";a:2:{s:28:\"ekit_heading_seperator_style\";i:1;s:28:\"ekit_heading_seperator_image\";i:1;}}s:5:\"style\";a:3:{s:32:\"ekit_heading_section_title_style\";a:4:{s:24:\"ekit_heading_title_color\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:28:\"ekit_heading_sub_title_color\";i:1;s:36:\"ekit_heading_use_sub_title_text_fill\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:1:{s:29:\"ekit_heading_seperator_height\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:18:\"animation_duration\";i:4;}}}}s:20:\"elementskit-icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"ekit_icon_box\";a:4:{s:32:\"ekit_icon_box_enable_header_icon\";i:4;s:24:\"ekit_icon_box_title_text\";i:4;s:30:\"ekit_icon_box_description_text\";i:4;s:26:\"ekit_icon_box_header_image\";i:4;}s:30:\"ekit_icon_box_section_settings\";a:1:{s:24:\"ekit_icon_box_title_size\";i:4;}s:28:\"ekit_icon_box_section_button\";a:2:{s:24:\"ekit_icon_box_enable_btn\";i:1;s:21:\"ekit_icon_box_btn_url\";i:1;}}s:5:\"style\";a:5:{s:38:\"ekit_icon_box_section_background_style\";a:11:{s:41:\"ekit_icon_box_infobox_bg_group_background\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_color\";i:4;s:40:\"ekit_icon_box_iocnbox_border_group_width\";i:4;s:36:\"ekit_icon_box_infobox_border_radious\";i:4;s:47:\"ekit_icon_box_infobox_bg_hover_group_background\";i:4;s:42:\"ekit_icon_box_infobox_bg_hover_group_color\";i:2;s:44:\"ekit_icon_box_infobox_bg_hover_group_color_b\";i:4;s:38:\"ekit_icon_box_info_box_hover_animation\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_image\";i:2;s:32:\"ekit_icon_box_infobox_bg_padding\";i:4;s:38:\"ekit_icon_box_infobox_bg_group_color_b\";i:2;}s:31:\"ekit_icon_section_style_content\";a:13:{s:27:\"ekit_icon_description_color\";i:3;s:33:\"ekit_icon_description_color_hover\";i:2;s:49:\"ekit_icon_description_typography_group_typography\";i:3;s:50:\"ekit_icon_description_typography_group_font_family\";i:3;s:50:\"ekit_icon_description_typography_group_font_weight\";i:3;s:50:\"ekit_icon_description_typography_group_line_height\";i:3;s:21:\"ekit_icon_title_color\";i:2;s:27:\"ekit_icon_title_color_hover\";i:2;s:43:\"ekit_icon_title_typography_group_typography\";i:2;s:44:\"ekit_icon_title_typography_group_font_family\";i:2;s:42:\"ekit_icon_title_typography_group_font_size\";i:2;s:44:\"ekit_icon_title_typography_group_font_weight\";i:2;s:44:\"ekit_icon_title_typography_group_line_height\";i:2;}s:32:\"ekit_icon_box_section_style_icon\";a:3:{s:32:\"ekit_icon_box_icon_primary_color\";i:4;s:25:\"ekit_icon_box_icon_height\";i:4;s:24:\"ekit_icon_box_icon_width\";i:4;}s:37:\"ekit_icon_box_section_bg_ovelry_style\";a:1:{s:24:\"ekit_icon_box_show_image\";i:4;}s:27:\"ekit_icon_box_section_style\";a:2:{s:45:\"ekit_icon_box_btn_background_group_background\";i:1;s:51:\"ekit_icon_box_btn_background_hover_group_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("4099","514","ekit_post_views_count","3");
INSERT INTO 7ja_postmeta VALUES("4101","517","ekit_post_views_count","3");
INSERT INTO 7ja_postmeta VALUES("4105","520","ekit_post_views_count","4");
INSERT INTO 7ja_postmeta VALUES("4107","537","ekit_post_views_count","1");
INSERT INTO 7ja_postmeta VALUES("4115","443","ekit_post_views_count","2");
INSERT INTO 7ja_postmeta VALUES("4117","559","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4118","559","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4119","559","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4120","559","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4121","560","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4122","560","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4123","560","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4124","560","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4125","559","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4126","559","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4127","559","_elementor_data","[{\"id\":\"3a293095\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"2c87e4fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3c6d7739\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1319a879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"1fc9b085\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2a5940b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4128","561","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4129","561","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4130","561","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4131","561","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4132","561","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4133","561","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4134","561","_elementor_data","[{\"id\":\"3a293095\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"2c87e4fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3c6d7739\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1319a879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"1fc9b085\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2a5940b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4135","559","_elementor_page_assets","a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("4136","559","_elementor_controls_usage","a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:1;s:22:\"css_filters_css_filter\";i:1;s:22:\"css_filters_brightness\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:2:{s:18:\"ekit_heading_title\";i:1;s:22:\"ekit_heading_title_tag\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:1;s:22:\"ekit_heading_sub_title\";i:1;s:31:\"ekit_heading_sub_title_position\";i:1;s:26:\"ekit_heading_sub_title_tag\";i:1;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:1;s:24:\"ekit_heading_extra_title\";i:1;s:16:\"desciption_width\";i:1;}s:30:\"ekit_heading_section_seperator\";a:2:{s:28:\"ekit_heading_seperator_style\";i:1;s:28:\"ekit_heading_seperator_image\";i:1;}}s:5:\"style\";a:4:{s:32:\"ekit_heading_section_title_style\";a:4:{s:24:\"ekit_heading_title_color\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:1:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:1;s:28:\"ekit_heading_seperator_color\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:1:{s:32:\"ekit_heading_focused_title_color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("4138","559","ekit_post_views_count","3");
INSERT INTO 7ja_postmeta VALUES("4139","562","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4140","562","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4141","562","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4142","562","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4143","563","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4144","563","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4145","563","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4146","563","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4147","562","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4148","562","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4149","562","_elementor_data","[{\"id\":\"5eec9b59\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"2c78c700\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"517d2cc7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"53805275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5f6937f0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7b7a0919\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"32657e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"}},\"elements\":[{\"id\":\"4c719f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bcbc7a0\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_url\":\"\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"76c97925\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"3e16ee37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3febccc2\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"BFD Advisors\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/IpadYellowTrans-1.png\",\"id\":448,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"title\":\"Pints and Peaks\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pints-and-Peaks.png\",\"id\":453,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"d1e34f0\",\"button_text\":\"Get Started\"},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"BluePrint Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\",\"id\":457,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/blueprintfin.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/GW-BG-Template-1.png\",\"id\":450,\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4150","564","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4151","564","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4152","564","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4153","564","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4154","564","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4155","564","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4156","564","_elementor_data","[{\"id\":\"5eec9b59\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"2c78c700\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"517d2cc7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"53805275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5f6937f0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7b7a0919\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"32657e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"}},\"elements\":[{\"id\":\"4c719f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bcbc7a0\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_url\":\"\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"76c97925\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"3e16ee37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3febccc2\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"BFD Advisors\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/IpadYellowTrans-1.png\",\"id\":448,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"title\":\"Pints and Peaks\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pints-and-Peaks.png\",\"id\":453,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"d1e34f0\",\"button_text\":\"Get Started\"},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"BluePrint Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\",\"id\":457,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/blueprintfin.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/GW-BG-Template-1.png\",\"id\":450,\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4157","562","_elementor_page_assets","a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("4158","562","_elementor_controls_usage","a:7:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:2:{s:18:\"ekit_heading_title\";i:1;s:22:\"ekit_heading_title_tag\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:1;s:22:\"ekit_heading_sub_title\";i:1;s:31:\"ekit_heading_sub_title_position\";i:1;s:26:\"ekit_heading_sub_title_tag\";i:1;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:1;s:24:\"ekit_heading_extra_title\";i:1;s:16:\"desciption_width\";i:1;}s:30:\"ekit_heading_section_seperator\";a:2:{s:28:\"ekit_heading_seperator_style\";i:1;s:28:\"ekit_heading_seperator_image\";i:1;}}s:5:\"style\";a:4:{s:32:\"ekit_heading_section_title_style\";a:4:{s:24:\"ekit_heading_title_color\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:28:\"ekit_heading_sub_title_color\";i:1;s:36:\"ekit_heading_use_sub_title_text_fill\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:1:{s:29:\"ekit_heading_seperator_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:1:{s:48:\"ekit_heading_focus_title_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:21:\"space_between_widgets\";i:3;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:4;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;}}}}s:17:\"elementskit-video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:32:\"ekit_video_popup_content_section\";a:6:{s:27:\"ekit_video_popup_video_type\";i:1;s:19:\"ekit_video_self_url\";i:1;s:29:\"ekit_video_player_self_hosted\";i:1;s:26:\"ekit_video_popup_auto_play\";i:1;s:27:\"ekit_video_popup_video_mute\";i:1;s:17:\"self_poster_image\";i:1;}}s:5:\"style\";a:1:{s:30:\"ekit_video_popup_section_style\";a:3:{s:26:\"ekit_video_popup_icon_size\";i:1;s:40:\"ekit_video_popup_btn_bg_color_background\";i:1;s:35:\"ekit_video_popup_btn_bg_color_image\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:18:\"pp-image-accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_items\";a:1:{s:15:\"accordion_items\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("4179","568","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4180","568","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4181","568","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4182","568","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4183","569","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4184","569","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4185","569","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4186","569","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4187","568","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4188","568","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4189","568","_elementor_data","[{\"id\":\"2d7f0cab\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5b06b79c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"75edef6c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{Blog}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5fed5019\",\"elType\":\"section\",\"settings\":{\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc56c13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7b3b411c\",\"elType\":\"widget\",\"settings\":{\"premium_blog_grid\":\"\",\"premium_blog_number_of_posts\":1,\"premium_blog_excerpt_text\":\"Read More \\u00bb\",\"premium_blog_tab_label\":\"All\",\"premium_blog_prev_text\":\"Previous\",\"premium_blog_next_text\":\"Next\",\"categories_repeater\":[{\"_id\":\"fe0d3b9\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"premium-addon-blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4190","570","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4191","570","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4192","570","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4193","570","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4194","570","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4195","570","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4196","570","_elementor_data","[{\"id\":\"2d7f0cab\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5b06b79c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"75edef6c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{Blog}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5fed5019\",\"elType\":\"section\",\"settings\":{\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc56c13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7b3b411c\",\"elType\":\"widget\",\"settings\":{\"premium_blog_grid\":\"\",\"premium_blog_number_of_posts\":1,\"premium_blog_excerpt_text\":\"Read More \\u00bb\",\"premium_blog_tab_label\":\"All\",\"premium_blog_prev_text\":\"Previous\",\"premium_blog_next_text\":\"Next\",\"categories_repeater\":[{\"_id\":\"fe0d3b9\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"premium-addon-blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4197","568","_elementor_page_assets","a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("4198","568","_elementor_controls_usage","a:4:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:2:{s:18:\"ekit_heading_title\";i:1;s:22:\"ekit_heading_title_tag\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:1;s:22:\"ekit_heading_sub_title\";i:1;s:31:\"ekit_heading_sub_title_position\";i:1;s:26:\"ekit_heading_sub_title_tag\";i:1;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:1;s:24:\"ekit_heading_extra_title\";i:1;s:16:\"desciption_width\";i:1;}s:30:\"ekit_heading_section_seperator\";a:2:{s:28:\"ekit_heading_seperator_style\";i:1;s:28:\"ekit_heading_seperator_image\";i:1;}}s:5:\"style\";a:4:{s:32:\"ekit_heading_section_title_style\";a:4:{s:24:\"ekit_heading_title_color\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:28:\"ekit_heading_sub_title_color\";i:1;s:36:\"ekit_heading_use_sub_title_text_fill\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:1;s:28:\"ekit_heading_seperator_color\";i:1;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:18:\"premium-addon-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:24:\"general_settings_section\";a:2:{s:17:\"premium_blog_grid\";i:1;s:28:\"premium_blog_number_of_posts\";i:1;}}s:5:\"style\";a:1:{s:29:\"post_categories_style_section\";a:1:{s:19:\"categories_repeater\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:1;s:27:\"background_hover_background\";i:1;s:27:\"background_hover_transition\";i:1;s:29:\"background_hover_color_b_stop\";i:1;s:30:\"background_hover_gradient_type\";i:1;s:34:\"background_hover_gradient_position\";i:1;}s:14:\"section_border\";a:1:{s:12:\"border_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("4276","556","ekit_post_views_count","1");
INSERT INTO 7ja_postmeta VALUES("4424","18","ekit_post_views_count","3");
INSERT INTO 7ja_postmeta VALUES("4512","600","_elementor_is_screenshot","1");
INSERT INTO 7ja_postmeta VALUES("4513","600","_wp_attached_file","elementor/screenshots/Elementor-post-screenshot_11_2023-02-08-22-49-27_315d68aa.png");
INSERT INTO 7ja_postmeta VALUES("4514","11","_elementor_screenshot","a:2:{s:2:\"id\";i:600;s:3:\"url\";s:150:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_11_2023-02-08-22-49-27_315d68aa.png\";}");
INSERT INTO 7ja_postmeta VALUES("4515","601","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4516","601","_elementor_template_type","header");
INSERT INTO 7ja_postmeta VALUES("4517","602","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4518","602","_elementor_template_type","header");
INSERT INTO 7ja_postmeta VALUES("4519","601","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("4520","601","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("4521","601","_edit_lock","1676487392:1");
INSERT INTO 7ja_postmeta VALUES("4522","601","ekit_post_views_count","15");
INSERT INTO 7ja_postmeta VALUES("4526","604","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4527","604","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4528","604","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4529","604","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4530","604","_elementor_data","[{\"id\":\"6e89ec3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dd1f178\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2c5c7ce7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6d29e6b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":75,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"308f1735\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"criativo-menus\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"elementskit_hamburger_icon\":{\"value\":\"icon icon-hamburger-2\",\"library\":\"ekiticons\"},\"submenu_click_area\":\"\",\"elementskit_one_page_enable\":\"\",\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#0C0C0C\",\"elementskit_mobile_menu_panel_spacing_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_text_color\":\"#F9F9F9\",\"elementskit_item_color_hover\":\"#F9F9F9\",\"elementskit_nav_menu_active_text_color\":\"#5CD2B9\",\"elementskit_menu_item_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"elementskit_style_tab_submenu_indicator_color\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Work Sans\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color\":\"#F9F9F9\",\"elementskit_item_text_color_hover\":\"#F9F9F9\",\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#5CD2B9\",\"elementskit_nav_sub_menu_active_text_color\":\"#5CD2B9\",\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_panel_submenu_border_color\":\"#5CD2B9\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#AAAAAA\",\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_background_color\":\"#02010100\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#F9F9F9\",\"elementskit_menu_toggle_icon_color_hover\":\"#F9F9F9\",\"elementskit_menu_close_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_radius_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"elementskit_menu_close_border_color\":\"#5CD2B9\",\"elementskit_menu_close_icon_color\":\"#5CD2B9\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=02b9182\",\"elementskit_item_background_color\":\"\",\"elementskit_menu_text_color\":\"globals\\/colors?id=6aba3dc\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=02b9182\",\"elementskit_menu_item_background_color\":\"globals\\/colors?id=349d81c\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=text\",\"elementskit_panel_submenu_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=6aba3dc\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=6aba3dc\",\"elementskit_menu_item_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_item_color_hover\":\"globals\\/colors?id=6fc639b\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=6aba3dc\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=16356db\",\"elementskit_submenu_item_color_tablet\":\"globals\\/colors?id=6aba3dc\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=6fc639b\",\"elementskit_item_color_hover_tablet\":\"globals\\/colors?id=6aba3dc\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_close_typography_typography\":\"globals\\/typography?id=48147d0\",\"elementskit_menu_toggle_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"elementskit_item_background_hover_color\":\"\",\"elementskit_nav_menu_active_bg_color_color\":\"globals\\/colors?id=349d81c\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"globals\\/colors?id=349d81c\"},\"elementskit_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_menu_item_icon_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Work Sans\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_menu_text_color_tablet\":\"#5CD2B9\",\"elementskit_item_background_hover_background\":\"classic\",\"elementskit_item_color_hover_tablet\":\"#F9F9F9\",\"elementskit_nav_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_menu_active_bg_color_color\":\"#151515\",\"elementskit_style_tab_submenu_item_arrow\":\"elementskit_none\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"elementskit_submenu_item_spacing_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color_tablet\":\"#F9F9F9\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_menu_item_background_color\":\"#151515\",\"elementskit_menu_open_typography_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"elementskit_menu_toggle_border_color\":\"#5CD2B9\",\"elementskit_menu_close_typography_typography\":\"custom\",\"elementskit_menu_close_typography_font_family\":\"Poppins\",\"elementskit_menu_close_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"elementskit_menu_close_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"elementskit_menu_close_typography_font_weight\":\"600\",\"elementskit_menu_close_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"elementskit_menu_close_spacing_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"25\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_background_color\":\"#02010100\",\"elementskit_menu_close_icon_color_hover\":\"#F9F9F9\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_menu_logo\":{\"url\":\"\",\"id\":-1},\"elementskit_menubar_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menubar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menubar_background_slideshow_gallery\":[],\"elementskit_item_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_item_background_slideshow_gallery\":[],\"elementskit_item_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_nav_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_nav_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_menu_item_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_item_background_slideshow_gallery\":[],\"elementskit_menu_item_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_sub_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_submenu_container_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_submenu_container_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_submenu_container_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_toggle_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_toggle_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_toggle_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_toggle_background_hover_slideshow_gallery\":[],\"elementskit_menu_close_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_close_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_close_background_slideshow_gallery\":[],\"elementskit_menu_close_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_close_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_close_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"63bdf82\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":4.6639999999999997015720509807579219341278076171875,\"_inline_size_tablet\":10,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"63e603c0\",\"elType\":\"widget\",\"settings\":{\"ekit_search_placeholder_text\":\"Search...\",\"ekit_search_icons\":{\"value\":\"icon icon-search11\",\"library\":\"ekiticons\"},\"ekit_searech_icon_color\":\"#5CD2B9\",\"ekit_seacrh_icon_bg_color\":\"#02010100\",\"ekit_searech_icon_hover_color\":\"#F9F9F9\",\"ekit_seacrh_icon_hover_bg_color\":\"#02010100\",\"ekit_search_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-3\",\"isLinked\":false},\"ekit_search_backdrop_background_background\":\"classic\",\"__globals__\":{\"ekit_searech_icon_color\":\"globals\\/colors?id=6fc639b\",\"ekit_seacrh_icon_bg_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_searech_icon_hover_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_seacrh_icon_hover_bg_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_search_backdrop_background_color\":\"\",\"ekit_search_content_title_color\":\"globals\\/colors?id=6fc639b\"},\"ekit_search_backdrop_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_search_backdrop_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_search_backdrop_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-header-search\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4531","605","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4532","605","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4533","605","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4534","605","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4535","605","_elementor_data","[{\"id\":\"6e89ec3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dd1f178\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"2c5c7ce7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6d29e6b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":75,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"308f1735\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"criativo-menus\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"elementskit_hamburger_icon\":{\"value\":\"icon icon-hamburger-2\",\"library\":\"ekiticons\"},\"submenu_click_area\":\"\",\"elementskit_one_page_enable\":\"\",\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#0C0C0C\",\"elementskit_mobile_menu_panel_spacing_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_text_color\":\"#F9F9F9\",\"elementskit_item_color_hover\":\"#F9F9F9\",\"elementskit_nav_menu_active_text_color\":\"#5CD2B9\",\"elementskit_menu_item_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"elementskit_style_tab_submenu_indicator_color\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Work Sans\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color\":\"#F9F9F9\",\"elementskit_item_text_color_hover\":\"#F9F9F9\",\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#5CD2B9\",\"elementskit_nav_sub_menu_active_text_color\":\"#5CD2B9\",\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_panel_submenu_border_color\":\"#5CD2B9\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#AAAAAA\",\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_background_color\":\"#02010100\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#F9F9F9\",\"elementskit_menu_toggle_icon_color_hover\":\"#F9F9F9\",\"elementskit_menu_close_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_radius_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"elementskit_menu_close_border_color\":\"#5CD2B9\",\"elementskit_menu_close_icon_color\":\"#5CD2B9\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=02b9182\",\"elementskit_item_background_color\":\"\",\"elementskit_menu_text_color\":\"globals\\/colors?id=6aba3dc\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=02b9182\",\"elementskit_menu_item_background_color\":\"globals\\/colors?id=349d81c\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=text\",\"elementskit_panel_submenu_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=6aba3dc\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=6aba3dc\",\"elementskit_menu_item_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_item_color_hover\":\"globals\\/colors?id=6fc639b\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=6aba3dc\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=16356db\",\"elementskit_submenu_item_color_tablet\":\"globals\\/colors?id=6aba3dc\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=6fc639b\",\"elementskit_item_color_hover_tablet\":\"globals\\/colors?id=6aba3dc\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_close_typography_typography\":\"globals\\/typography?id=48147d0\",\"elementskit_menu_toggle_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"elementskit_item_background_hover_color\":\"\",\"elementskit_nav_menu_active_bg_color_color\":\"globals\\/colors?id=349d81c\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"globals\\/colors?id=349d81c\"},\"elementskit_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_menu_item_icon_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Work Sans\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_menu_text_color_tablet\":\"#5CD2B9\",\"elementskit_item_background_hover_background\":\"classic\",\"elementskit_item_color_hover_tablet\":\"#F9F9F9\",\"elementskit_nav_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_menu_active_bg_color_color\":\"#151515\",\"elementskit_style_tab_submenu_item_arrow\":\"elementskit_none\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"elementskit_submenu_item_spacing_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color_tablet\":\"#F9F9F9\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_menu_item_background_color\":\"#151515\",\"elementskit_menu_open_typography_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"elementskit_menu_toggle_border_color\":\"#5CD2B9\",\"elementskit_menu_close_typography_typography\":\"custom\",\"elementskit_menu_close_typography_font_family\":\"Poppins\",\"elementskit_menu_close_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"elementskit_menu_close_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"elementskit_menu_close_typography_font_weight\":\"600\",\"elementskit_menu_close_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"elementskit_menu_close_spacing_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"25\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_background_color\":\"#02010100\",\"elementskit_menu_close_icon_color_hover\":\"#F9F9F9\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_menu_logo\":{\"url\":\"\",\"id\":-1},\"elementskit_menubar_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menubar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menubar_background_slideshow_gallery\":[],\"elementskit_item_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_item_background_slideshow_gallery\":[],\"elementskit_item_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_nav_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_nav_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_menu_item_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_item_background_slideshow_gallery\":[],\"elementskit_menu_item_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_sub_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_submenu_container_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_submenu_container_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_submenu_container_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_toggle_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_toggle_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_toggle_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_toggle_background_hover_slideshow_gallery\":[],\"elementskit_menu_close_background_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_close_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_close_background_slideshow_gallery\":[],\"elementskit_menu_close_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_close_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"elementskit_menu_close_background_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"63bdf82\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":4.6639999999999997015720509807579219341278076171875,\"_inline_size_tablet\":10,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"63e603c0\",\"elType\":\"widget\",\"settings\":{\"ekit_search_placeholder_text\":\"Search...\",\"ekit_search_icons\":{\"value\":\"icon icon-search11\",\"library\":\"ekiticons\"},\"ekit_searech_icon_color\":\"#5CD2B9\",\"ekit_seacrh_icon_bg_color\":\"#02010100\",\"ekit_searech_icon_hover_color\":\"#F9F9F9\",\"ekit_seacrh_icon_hover_bg_color\":\"#02010100\",\"ekit_search_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-3\",\"isLinked\":false},\"ekit_search_backdrop_background_background\":\"classic\",\"__globals__\":{\"ekit_searech_icon_color\":\"globals\\/colors?id=6fc639b\",\"ekit_seacrh_icon_bg_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_searech_icon_hover_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_seacrh_icon_hover_bg_color\":\"globals\\/colors?id=a88f8f1\",\"ekit_search_backdrop_background_color\":\"\",\"ekit_search_content_title_color\":\"globals\\/colors?id=6fc639b\"},\"ekit_search_backdrop_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_search_backdrop_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_search_backdrop_background_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-header-search\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4536","604","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("4537","604","_elementor_controls_usage","a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:3;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:3;s:17:\"pa_badge_bg_image\";i:3;s:26:\"pa_badge_bg_video_fallback\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:3;s:25:\"background_video_fallback\";i:3;s:22:\"background_hover_image\";i:3;s:31:\"background_hover_video_fallback\";i:3;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:3;s:33:\"background_overlay_video_fallback\";i:3;s:30:\"background_overlay_hover_image\";i:3;s:39:\"background_overlay_hover_video_fallback\";i:3;}}s:8:\"advanced\";a:1:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:3;s:23:\"pa_cursor_bgColor_image\";i:3;s:32:\"pa_cursor_bgColor_video_fallback\";i:3;}}}}s:13:\"ekit-nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:5:\"style\";a:6:{s:35:\"elementskit_style_tab_submenu_panel\";a:9:{s:35:\"elementskit_submenu_container_width\";i:1;s:17:\"sub_panel_padding\";i:1;s:39:\"elementskit_panel_submenu_border_border\";i:1;s:38:\"elementskit_panel_submenu_border_width\";i:1;s:38:\"elementskit_panel_submenu_border_color\";i:1;s:51:\"elementskit_submenu_container_background_background\";i:1;s:46:\"elementskit_submenu_container_background_color\";i:1;s:46:\"elementskit_submenu_container_background_image\";i:1;s:55:\"elementskit_submenu_container_background_video_fallback\";i:1;}s:26:\"elementskit_menu_style_tab\";a:4:{s:26:\"elementskit_menubar_height\";i:1;s:27:\"ekit_menu_item_icon_spacing\";i:1;s:36:\"elementskit_menubar_background_image\";i:1;s:45:\"elementskit_menubar_background_video_fallback\";i:1;}s:30:\"elementskit_style_tab_menuitem\";a:19:{s:27:\"elementskit_menu_text_color\";i:1;s:28:\"elementskit_item_color_hover\";i:1;s:38:\"elementskit_nav_menu_active_text_color\";i:1;s:29:\"elementskit_menu_item_spacing\";i:1;s:41:\"elementskit_content_typography_typography\";i:1;s:42:\"elementskit_content_typography_font_family\";i:1;s:40:\"elementskit_content_typography_font_size\";i:1;s:42:\"elementskit_content_typography_font_weight\";i:1;s:42:\"elementskit_content_typography_line_height\";i:1;s:38:\"elementskit_item_background_background\";i:1;s:44:\"elementskit_item_background_hover_background\";i:1;s:47:\"elementskit_nav_menu_active_bg_color_background\";i:1;s:42:\"elementskit_nav_menu_active_bg_color_color\";i:1;s:33:\"elementskit_item_background_image\";i:1;s:42:\"elementskit_item_background_video_fallback\";i:1;s:39:\"elementskit_item_background_hover_image\";i:1;s:48:\"elementskit_item_background_hover_video_fallback\";i:1;s:42:\"elementskit_nav_menu_active_bg_color_image\";i:1;s:51:\"elementskit_nav_menu_active_bg_color_video_fallback\";i:1;}s:39:\"elementskit_style_tab_submenu_indicator\";a:2:{s:45:\"elementskit_style_tab_submenu_indicator_color\";i:1;s:30:\"ekit_submenu_indicator_spacing\";i:1;}s:34:\"elementskit_style_tab_submenu_item\";a:20:{s:43:\"elementskit_menu_item_typography_typography\";i:1;s:44:\"elementskit_menu_item_typography_font_family\";i:1;s:42:\"elementskit_menu_item_typography_font_size\";i:1;s:44:\"elementskit_menu_item_typography_font_weight\";i:1;s:44:\"elementskit_menu_item_typography_line_height\";i:1;s:32:\"elementskit_submenu_item_spacing\";i:1;s:30:\"elementskit_submenu_item_color\";i:1;s:33:\"elementskit_item_text_color_hover\";i:1;s:49:\"elementskit_menu_item_background_hover_background\";i:1;s:44:\"elementskit_menu_item_background_hover_color\";i:1;s:42:\"elementskit_nav_sub_menu_active_text_color\";i:1;s:43:\"elementskit_menu_item_background_background\";i:1;s:38:\"elementskit_menu_item_background_color\";i:1;s:51:\"elementskit_nav_sub_menu_active_bg_color_background\";i:1;s:38:\"elementskit_menu_item_background_image\";i:1;s:47:\"elementskit_menu_item_background_video_fallback\";i:1;s:44:\"elementskit_menu_item_background_hover_image\";i:1;s:53:\"elementskit_menu_item_background_hover_video_fallback\";i:1;s:46:\"elementskit_nav_sub_menu_active_bg_color_image\";i:1;s:55:\"elementskit_nav_sub_menu_active_bg_color_video_fallback\";i:1;}s:33:\"elementskit_menu_toggle_style_tab\";a:25:{s:45:\"elementskit_menu_toggle_background_background\";i:1;s:40:\"elementskit_menu_toggle_background_color\";i:1;s:37:\"elementskit_menu_toggle_border_border\";i:1;s:34:\"elementskit_menu_toggle_icon_color\";i:1;s:40:\"elementskit_menu_toggle_icon_color_hover\";i:1;s:36:\"elementskit_menu_close_border_border\";i:1;s:35:\"elementskit_menu_close_border_color\";i:1;s:33:\"elementskit_menu_close_icon_color\";i:1;s:36:\"elementskit_menu_toggle_border_color\";i:1;s:44:\"elementskit_menu_close_typography_typography\";i:1;s:45:\"elementskit_menu_close_typography_font_family\";i:1;s:43:\"elementskit_menu_close_typography_font_size\";i:1;s:45:\"elementskit_menu_close_typography_font_weight\";i:1;s:45:\"elementskit_menu_close_typography_line_height\";i:1;s:44:\"elementskit_menu_close_background_background\";i:1;s:39:\"elementskit_menu_close_background_color\";i:1;s:39:\"elementskit_menu_close_icon_color_hover\";i:1;s:40:\"elementskit_menu_toggle_background_image\";i:1;s:49:\"elementskit_menu_toggle_background_video_fallback\";i:1;s:46:\"elementskit_menu_toggle_background_hover_image\";i:1;s:55:\"elementskit_menu_toggle_background_hover_video_fallback\";i:1;s:39:\"elementskit_menu_close_background_image\";i:1;s:48:\"elementskit_menu_close_background_video_fallback\";i:1;s:45:\"elementskit_menu_close_background_hover_image\";i:1;s:54:\"elementskit_menu_close_background_hover_video_fallback\";i:1;}}s:7:\"content\";a:3:{s:23:\"elementskit_content_tab\";a:4:{s:20:\"elementskit_nav_menu\";i:1;s:30:\"elementskit_main_menu_position\";i:1;s:27:\"elementskit_one_page_enable\";i:1;s:40:\"elementskit_style_tab_submenu_item_arrow\";i:1;}s:23:\"elementskit_mobile_menu\";a:3:{s:26:\"elementskit_hamburger_icon\";i:1;s:18:\"submenu_click_area\";i:1;s:25:\"elementskit_nav_menu_logo\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:25:\"elementskit-header-search\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"ekit_header_search\";a:1:{s:17:\"ekit_search_icons\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:36:\"ekit_header_search_section_tab_style\";a:5:{s:23:\"ekit_searech_icon_color\";i:1;s:25:\"ekit_seacrh_icon_bg_color\";i:1;s:29:\"ekit_searech_icon_hover_color\";i:1;s:31:\"ekit_seacrh_icon_hover_bg_color\";i:1;s:18:\"ekit_search_margin\";i:1;}s:32:\"ekit_search_container_style_tabs\";a:3:{s:42:\"ekit_search_backdrop_background_background\";i:1;s:37:\"ekit_search_backdrop_background_image\";i:1;s:46:\"ekit_search_backdrop_background_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("4538","604","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("4539","604","envato_tk_source_kit","348");
INSERT INTO 7ja_postmeta VALUES("4540","604","envato_tk_source_index","16");
INSERT INTO 7ja_postmeta VALUES("4541","601","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4542","601","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4543","601","_elementor_data","[{\"id\":\"47ee4dd5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"475aedfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":18.42699999999999960209606797434389591217041015625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3fc07024\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"4c46566\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"0b0c49a\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"link_to\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e32b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":81.5729999999999932924765744246542453765869140625,\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1ed0afd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"normal\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\"},\"align_items\":\"center\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4544","606","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4545","606","_elementor_template_type","header");
INSERT INTO 7ja_postmeta VALUES("4546","606","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4547","606","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4548","606","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4549","606","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4550","606","_elementor_data","[{\"id\":\"47ee4dd5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"475aedfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":18.428999999999998493649400188587605953216552734375,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3fc07024\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"4c46566\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e32b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":81.570999999999997953636921010911464691162109375,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1bd829aa\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"elementskit_hamburger_icon\":{\"value\":\"icon icon-hamburger-2\",\"library\":\"ekiticons\"},\"submenu_click_area\":\"\",\"elementskit_one_page_enable\":\"\",\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#0C0C0C\",\"elementskit_mobile_menu_panel_spacing_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_text_color\":\"#F9F9F9\",\"elementskit_menu_item_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"elementskit_style_tab_submenu_indicator_color\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Work Sans\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color\":\"#F9F9F9\",\"elementskit_item_text_color_hover\":\"#F9F9F9\",\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#F2295B\",\"elementskit_nav_sub_menu_active_text_color\":\"#5CD2B9\",\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_panel_submenu_border_color\":\"#5CD2B9\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_background_color\":\"#02010100\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#F9F9F9\",\"elementskit_menu_toggle_icon_color_hover\":\"#F9F9F9\",\"elementskit_menu_close_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_radius_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"elementskit_menu_close_border_color\":\"#5CD2B9\",\"elementskit_menu_close_icon_color\":\"#5CD2B9\",\"__globals__\":{\"elementskit_content_typography_typography\":\"\",\"elementskit_item_background_color\":\"\",\"elementskit_menu_text_color\":\"\",\"elementskit_style_tab_submenu_indicator_color\":\"\",\"elementskit_menu_item_typography_typography\":\"\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=text\",\"elementskit_panel_submenu_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_submenu_item_color\":\"\",\"elementskit_item_text_color_hover\":\"\",\"elementskit_menu_item_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_nav_sub_menu_active_text_color\":\"\",\"elementskit_item_color_hover\":\"globals\\/colors?id=primary\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=primary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=6aba3dc\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"wrapper_color_mobile_tablet\":\"\",\"elementskit_submenu_item_color_tablet\":\"\",\"elementskit_menu_text_color_tablet\":\"\",\"elementskit_item_color_hover_tablet\":\"\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"\",\"elementskit_menu_close_typography_typography\":\"globals\\/typography?id=48147d0\",\"elementskit_menu_toggle_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"elementskit_item_background_hover_color\":\"globals\\/colors?id=primary\",\"elementskit_nav_menu_active_bg_color_color\":\"globals\\/colors?id=secondary\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"\",\"elementskit_menubar_background_color\":\"globals\\/colors?id=primary\"},\"elementskit_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_menu_item_icon_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Work Sans\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_menu_text_color_tablet\":\"#5CD2B9\",\"elementskit_item_color_hover_tablet\":\"#F9F9F9\",\"elementskit_style_tab_submenu_item_arrow\":\"elementskit_none\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"elementskit_submenu_item_spacing_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color_tablet\":\"#F9F9F9\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_menu_item_background_color\":\"#151515\",\"elementskit_menu_open_typography_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"elementskit_menu_toggle_border_color\":\"#5CD2B9\",\"elementskit_menu_close_typography_typography\":\"custom\",\"elementskit_menu_close_typography_font_family\":\"Poppins\",\"elementskit_menu_close_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"elementskit_menu_close_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"elementskit_menu_close_typography_font_weight\":\"600\",\"elementskit_menu_close_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"elementskit_menu_close_spacing_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"25\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_background_color\":\"#02010100\",\"elementskit_menu_close_icon_color_hover\":\"#F9F9F9\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"elementskit_nav_dropdown_as\":\"ekit-nav-dropdown-click\",\"elementskit_menubar_background_color\":\"#26B6A3\",\"elementskit_menu_text_border_active_border\":\"none\",\"elementskit_menu_text_border_active_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4551","601","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("4553","601","_elementor_conditions","a:1:{i:0;s:15:\"include/general\";}");
INSERT INTO 7ja_postmeta VALUES("4554","607","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4555","607","_elementor_template_type","header");
INSERT INTO 7ja_postmeta VALUES("4556","607","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4557","607","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4558","607","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4559","607","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4560","607","_elementor_data","[{\"id\":\"47ee4dd5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"475aedfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":18.428999999999998493649400188587605953216552734375,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3fc07024\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"4c46566\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e32b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":81.570999999999997953636921010911464691162109375,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1bd829aa\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_hamburger_icon\":{\"value\":\"icon icon-hamburger-2\",\"library\":\"ekiticons\"},\"submenu_click_area\":\"\",\"elementskit_one_page_enable\":\"\",\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#0C0C0C\",\"elementskit_mobile_menu_panel_spacing_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_text_color\":\"#F9F9F9\",\"elementskit_menu_item_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"elementskit_style_tab_submenu_indicator_color\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Work Sans\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color\":\"#F9F9F9\",\"elementskit_item_text_color_hover\":\"#F9F9F9\",\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#F2295B\",\"elementskit_nav_sub_menu_active_text_color\":\"#5CD2B9\",\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_panel_submenu_border_color\":\"#5CD2B9\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_background_color\":\"#02010100\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#F9F9F9\",\"elementskit_menu_toggle_icon_color_hover\":\"#F9F9F9\",\"elementskit_menu_close_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_radius_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"elementskit_menu_close_border_color\":\"#5CD2B9\",\"elementskit_menu_close_icon_color\":\"#5CD2B9\",\"__globals__\":{\"elementskit_content_typography_typography\":\"\",\"elementskit_item_background_color\":\"\",\"elementskit_menu_text_color\":\"\",\"elementskit_style_tab_submenu_indicator_color\":\"\",\"elementskit_menu_item_typography_typography\":\"\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=text\",\"elementskit_panel_submenu_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_submenu_item_color\":\"\",\"elementskit_item_text_color_hover\":\"\",\"elementskit_menu_item_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_nav_sub_menu_active_text_color\":\"\",\"elementskit_item_color_hover\":\"globals\\/colors?id=primary\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=primary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=6aba3dc\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"wrapper_color_mobile_tablet\":\"\",\"elementskit_submenu_item_color_tablet\":\"\",\"elementskit_menu_text_color_tablet\":\"\",\"elementskit_item_color_hover_tablet\":\"\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"\",\"elementskit_menu_close_typography_typography\":\"globals\\/typography?id=48147d0\",\"elementskit_menu_toggle_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"elementskit_item_background_hover_color\":\"globals\\/colors?id=primary\",\"elementskit_nav_menu_active_bg_color_color\":\"globals\\/colors?id=secondary\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"\",\"elementskit_menubar_background_color\":\"globals\\/colors?id=primary\"},\"elementskit_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_menu_item_icon_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Work Sans\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_menu_text_color_tablet\":\"#5CD2B9\",\"elementskit_item_color_hover_tablet\":\"#F9F9F9\",\"elementskit_style_tab_submenu_item_arrow\":\"elementskit_none\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"elementskit_submenu_item_spacing_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color_tablet\":\"#F9F9F9\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_menu_item_background_color\":\"#151515\",\"elementskit_menu_open_typography_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"elementskit_menu_toggle_border_color\":\"#5CD2B9\",\"elementskit_menu_close_typography_typography\":\"custom\",\"elementskit_menu_close_typography_font_family\":\"Poppins\",\"elementskit_menu_close_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"elementskit_menu_close_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"elementskit_menu_close_typography_font_weight\":\"600\",\"elementskit_menu_close_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"elementskit_menu_close_spacing_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"25\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_background_color\":\"#02010100\",\"elementskit_menu_close_icon_color_hover\":\"#F9F9F9\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"elementskit_nav_dropdown_as\":\"ekit-nav-dropdown-click\",\"elementskit_menubar_background_color\":\"#26B6A3\",\"elementskit_menu_text_border_active_border\":\"none\",\"elementskit_menu_text_border_active_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4561","607","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("4562","607","_elementor_conditions","a:1:{i:0;s:15:\"include/general\";}");
INSERT INTO 7ja_postmeta VALUES("4564","608","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4565","608","_elementor_template_type","header");
INSERT INTO 7ja_postmeta VALUES("4566","608","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4567","608","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4568","608","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4569","608","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4570","608","_elementor_data","[{\"id\":\"47ee4dd5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"475aedfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":14.5709999999999997299937604111619293689727783203125,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3fc07024\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"4c46566\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e32b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85.429000000000002046363078989088535308837890625,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1bd829aa\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_hamburger_icon\":{\"value\":\"icon icon-hamburger-2\",\"library\":\"ekiticons\"},\"submenu_click_area\":\"\",\"elementskit_one_page_enable\":\"\",\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#0C0C0C\",\"elementskit_mobile_menu_panel_spacing_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_text_color\":\"#F9F9F9\",\"elementskit_menu_item_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"elementskit_style_tab_submenu_indicator_color\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Work Sans\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color\":\"#F9F9F9\",\"elementskit_item_text_color_hover\":\"#F9F9F9\",\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#F2295B\",\"elementskit_nav_sub_menu_active_text_color\":\"#5CD2B9\",\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_panel_submenu_border_color\":\"#5CD2B9\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_background_color\":\"#02010100\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#F9F9F9\",\"elementskit_menu_toggle_icon_color_hover\":\"#F9F9F9\",\"elementskit_menu_close_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_radius_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"elementskit_menu_close_border_color\":\"#5CD2B9\",\"elementskit_menu_close_icon_color\":\"#5CD2B9\",\"__globals__\":{\"elementskit_content_typography_typography\":\"\",\"elementskit_item_background_color\":\"\",\"elementskit_menu_text_color\":\"\",\"elementskit_style_tab_submenu_indicator_color\":\"\",\"elementskit_menu_item_typography_typography\":\"\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=text\",\"elementskit_panel_submenu_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_submenu_item_color\":\"\",\"elementskit_item_text_color_hover\":\"\",\"elementskit_menu_item_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_nav_sub_menu_active_text_color\":\"\",\"elementskit_item_color_hover\":\"globals\\/colors?id=primary\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=primary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=6aba3dc\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"wrapper_color_mobile_tablet\":\"\",\"elementskit_submenu_item_color_tablet\":\"\",\"elementskit_menu_text_color_tablet\":\"\",\"elementskit_item_color_hover_tablet\":\"\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"\",\"elementskit_menu_close_typography_typography\":\"globals\\/typography?id=48147d0\",\"elementskit_menu_toggle_border_color\":\"globals\\/colors?id=6fc639b\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=a88f8f1\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"elementskit_item_background_hover_color\":\"globals\\/colors?id=primary\",\"elementskit_nav_menu_active_bg_color_color\":\"globals\\/colors?id=secondary\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"\",\"elementskit_menubar_background_color\":\"globals\\/colors?id=primary\"},\"elementskit_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_menu_item_icon_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Work Sans\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"elementskit_menu_text_color_tablet\":\"#5CD2B9\",\"elementskit_item_color_hover_tablet\":\"#F9F9F9\",\"elementskit_style_tab_submenu_item_arrow\":\"elementskit_none\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5CD2B9\",\"ekit_submenu_indicator_spacing_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"elementskit_submenu_item_spacing_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"elementskit_submenu_item_color_tablet\":\"#F9F9F9\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_menu_item_background_color\":\"#151515\",\"elementskit_menu_open_typography_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"elementskit_menu_toggle_border_color\":\"#5CD2B9\",\"elementskit_menu_close_typography_typography\":\"custom\",\"elementskit_menu_close_typography_font_family\":\"Poppins\",\"elementskit_menu_close_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"elementskit_menu_close_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"elementskit_menu_close_typography_font_weight\":\"600\",\"elementskit_menu_close_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"elementskit_menu_close_spacing_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"25\",\"bottom\":\"8\",\"left\":\"10\",\"isLinked\":false},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_background_color\":\"#02010100\",\"elementskit_menu_close_icon_color_hover\":\"#F9F9F9\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"elementskit_nav_dropdown_as\":\"ekit-nav-dropdown-click\",\"elementskit_menubar_background_color\":\"#26B6A3\",\"elementskit_menu_text_border_active_border\":\"none\",\"elementskit_menu_text_border_active_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4571","608","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("4572","608","_elementor_conditions","a:1:{i:0;s:15:\"include/general\";}");
INSERT INTO 7ja_postmeta VALUES("4575","609","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4576","609","_elementor_template_type","header");
INSERT INTO 7ja_postmeta VALUES("4577","609","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4578","609","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4579","609","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4580","609","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4581","609","_elementor_data","[{\"id\":\"47ee4dd5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"475aedfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":14.5709999999999997299937604111619293689727783203125,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3fc07024\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"4c46566\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e32b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85.429000000000002046363078989088535308837890625,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1ed0afd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"align_items\":\"center\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"normal\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4582","609","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("4583","609","_elementor_conditions","a:1:{i:0;s:15:\"include/general\";}");
INSERT INTO 7ja_postmeta VALUES("4625","613","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4626","613","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4627","613","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("4628","613","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("4629","614","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4630","614","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4631","614","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("4632","614","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("4633","613","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4634","613","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4635","613","_elementor_data","[{\"id\":\"50ecec4d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[{\"id\":\"393c0669\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6a3093b5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":334,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/GW-logo.png\"},{\"id\":335,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/blueprintfinlogo.webp\"},{\"id\":333,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/BFD-main-logo.webp\"},{\"id\":336,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/PivotAll_Web-Logo.png\"},{\"id\":337,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/Markpianoman.png\"},{\"id\":488,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/UnlimitedOutdoors_WEB4Color1-1-1.jpg\"}],\"thumbnail_size\":\"large\",\"gallery_vertical_align\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"slides_to_show\":\"4\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4636","615","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4637","615","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("4638","615","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("4639","615","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("4640","615","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4641","615","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4642","615","_elementor_data","[{\"id\":\"50ecec4d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[{\"id\":\"393c0669\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6a3093b5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":334,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/GW-logo.png\"},{\"id\":335,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/blueprintfinlogo.webp\"},{\"id\":333,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/BFD-main-logo.webp\"},{\"id\":336,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/PivotAll_Web-Logo.png\"},{\"id\":337,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/Markpianoman.png\"},{\"id\":488,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/UnlimitedOutdoors_WEB4Color1-1-1.jpg\"}],\"thumbnail_size\":\"large\",\"gallery_vertical_align\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"slides_to_show\":\"4\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4643","613","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("4644","613","_elementor_controls_usage","a:3:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:22:\"gallery_vertical_align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;s:29:\"background_overlay_color_stop\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("4895","638","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("4896","638","_elementor_template_type","header");
INSERT INTO 7ja_postmeta VALUES("4897","638","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("4898","638","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("4899","638","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("4900","638","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("4901","638","_elementor_data","[{\"id\":\"47ee4dd5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"475aedfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":14.5709999999999997299937604111619293689727783203125,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3fc07024\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"4c46566\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e32b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85.429000000000002046363078989088535308837890625,\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1ed0afd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"normal\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("4902","638","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("4903","638","_elementor_conditions","a:1:{i:0;s:15:\"include/general\";}");
INSERT INTO 7ja_postmeta VALUES("4948","147","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("4949","147","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("5000","649","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5001","649","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("5002","649","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5003","649","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5004","650","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5005","650","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("5006","650","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5007","650","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5008","649","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5009","649","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5010","649","_elementor_data","[{\"id\":\"55742779\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4819cb1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3c0f25dc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"a7ea7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5b3ffa85\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ce2d41\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"70ef54ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2af6798b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"Ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:Ben@latitude39creative.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5011","651","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5012","651","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("5013","651","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5014","651","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5015","651","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5016","651","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5017","651","_elementor_data","[{\"id\":\"55742779\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4819cb1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3c0f25dc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"a7ea7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5b3ffa85\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ce2d41\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"70ef54ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"+(827) 123 - 456 - 7891\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2af6798b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Mail Us\",\"description_text\":\"info@evaniayogastudio.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5018","649","_elementor_page_assets","a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5022","649","ekit_post_views_count","4");
INSERT INTO 7ja_postmeta VALUES("5027","31","ekit_post_views_count","17");
INSERT INTO 7ja_postmeta VALUES("5053","658","_wp_attached_file","2023/02/placeholder.png");
INSERT INTO 7ja_postmeta VALUES("5054","658","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2023/02/placeholder.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2008;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7514;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1207;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5342;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("5055","658","_elementor_source_image_hash","4b59a6dd31d4308f91204526e898446490d81dcc");
INSERT INTO 7ja_postmeta VALUES("5056","659","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5057","659","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("5058","659","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5059","659","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5060","659","_elementor_data","[{\"id\":\"8470567\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e2b6fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6f399735\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Portfolio {{Carousel}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=7980221\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"25868427\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ Portfolio Carousel<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"c712802\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"layout\":\"full_width\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"648731ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1be91bde\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest  {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"PORTFOLIO\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"30839375\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"66f61112\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"653\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G15.jpg\"},{\"id\":\"654\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G16.jpg\"},{\"id\":\"655\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G17.jpg\"},{\"id\":\"656\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G18.jpg\"},{\"id\":\"657\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G19.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"navigation\":\"dots\",\"arrows_position\":\"outside\",\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"-43\",\"bottom\":\"0\",\"left\":\"-43\",\"isLinked\":false},\"__globals__\":{\"dots_color\":\"globals\\/colors?id=6fc639b\"},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5061","660","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5062","660","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("5063","660","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5064","660","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5065","660","_elementor_data","[{\"id\":\"8470567\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e2b6fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6f399735\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Portfolio {{Carousel}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=7980221\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"25868427\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ Portfolio Carousel<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"c712802\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"layout\":\"full_width\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"648731ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1be91bde\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest  {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"PORTFOLIO\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"30839375\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"66f61112\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"653\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G15.jpg\"},{\"id\":\"654\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G16.jpg\"},{\"id\":\"655\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G17.jpg\"},{\"id\":\"656\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G18.jpg\"},{\"id\":\"657\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/G19.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"navigation\":\"dots\",\"arrows_position\":\"outside\",\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"-43\",\"bottom\":\"0\",\"left\":\"-43\",\"isLinked\":false},\"__globals__\":{\"dots_color\":\"globals\\/colors?id=6fc639b\"},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5066","659","_elementor_page_assets","a:1:{s:6:\"styles\";a:4:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5067","659","_elementor_controls_usage","a:5:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:22:\"ekit_heading_title_tag\";i:2;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:2;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:5:{s:32:\"ekit_heading_focused_title_color\";i:2;s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;s:28:\"ekit_heading_sub_title_color\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:15:\"arrows_position\";i:1;s:9:\"dots_size\";i:1;}s:19:\"section_style_image\";a:2:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("5068","659","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("5069","659","envato_tk_source_kit","348");
INSERT INTO 7ja_postmeta VALUES("5070","659","envato_tk_source_index","8");
INSERT INTO 7ja_postmeta VALUES("5089","103","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5260","679","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5261","679","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("5262","679","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5263","679","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5264","680","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5265","680","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("5266","680","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5267","680","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5268","679","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5269","679","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5270","679","_elementor_data","[{\"id\":\"2282f8a9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4d5067d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"}},\"elements\":[{\"id\":\"1f72acb8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Services}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"6cb81bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5271","681","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5272","681","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("5273","681","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5274","681","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5275","681","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5276","681","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5277","681","_elementor_data","[{\"id\":\"2282f8a9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4d5067d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"}},\"elements\":[{\"id\":\"1f72acb8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Services}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"6cb81bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5278","679","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5279","679","_elementor_controls_usage","a:3:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:3:{s:18:\"ekit_heading_title\";i:1;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:1;s:22:\"ekit_heading_sub_title\";i:1;s:31:\"ekit_heading_sub_title_position\";i:1;s:26:\"ekit_heading_sub_title_tag\";i:1;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:1;s:24:\"ekit_heading_extra_title\";i:1;s:16:\"desciption_width\";i:1;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:1;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:1;}}s:5:\"style\";a:4:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:7:{s:32:\"ekit_heading_focused_title_color\";i:1;s:33:\"ekit_heading_use_focused_title_bg\";i:1;s:38:\"ekit_heading_focused_title_color_hover\";i:1;s:48:\"ekit_heading_focused_title_typography_typography\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:40:\"ekit_heading_title_text_decoration_color\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_color\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:7:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:1;s:28:\"ekit_heading_sub_title_color\";i:1;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:1;s:28:\"ekit_heading_seperator_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_ypos\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:19:\"background_bg_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("5322","131","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("5323","131","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("5471","700","_wp_attached_file","2023/02/Latitude39logo.html");
INSERT INTO 7ja_postmeta VALUES("5472","700","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:173738;}");
INSERT INTO 7ja_postmeta VALUES("5481","704","_wp_attached_file","2023/02/Latitude-Logo-02-1.jpg");
INSERT INTO 7ja_postmeta VALUES("5482","704","_wp_attachment_metadata","a:6:{s:5:\"width\";i:499;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2023/02/Latitude-Logo-02-1.jpg\";s:8:\"filesize\";i:34583;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Latitude-Logo-02-1-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6420;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Latitude-Logo-02-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:3732;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("5486","706","_wp_attached_file","2023/02/premium-addons-logo.png");
INSERT INTO 7ja_postmeta VALUES("5487","706","_wp_attachment_metadata","a:6:{s:5:\"width\";i:201;s:6:\"height\";i:54;s:4:\"file\";s:31:\"2023/02/premium-addons-logo.png\";s:8:\"filesize\";i:2529;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"premium-addons-logo-150x54.png\";s:5:\"width\";i:150;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4652;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("5488","707","_wp_attached_file","2023/02/leap13-logo.png");
INSERT INTO 7ja_postmeta VALUES("5489","707","_wp_attachment_metadata","a:6:{s:5:\"width\";i:99;s:6:\"height\";i:41;s:4:\"file\";s:23:\"2023/02/leap13-logo.png\";s:8:\"filesize\";i:562;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:{}}}");
INSERT INTO 7ja_postmeta VALUES("5501","709","_wp_attached_file","2023/02/elementor-logo.jpg");
INSERT INTO 7ja_postmeta VALUES("5502","709","_wp_attachment_metadata","a:6:{s:5:\"width\";i:730;s:6:\"height\";i:478;s:4:\"file\";s:26:\"2023/02/elementor-logo.jpg\";s:8:\"filesize\";i:20193;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"elementor-logo-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5294;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"elementor-logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2903;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("5503","710","_wp_attached_file","2023/02/elementorlogo_.png");
INSERT INTO 7ja_postmeta VALUES("5504","710","_wp_attachment_metadata","a:6:{s:5:\"width\";i:533;s:6:\"height\";i:87;s:4:\"file\";s:26:\"2023/02/elementorlogo_.png\";s:8:\"filesize\";i:4928;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"elementorlogo_-300x49.png\";s:5:\"width\";i:300;s:6:\"height\";i:49;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5642;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"elementorlogo_-150x87.png\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1750;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("5542","715","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5543","715","_elementor_template_type","footer");
INSERT INTO 7ja_postmeta VALUES("5544","716","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5545","716","_elementor_template_type","footer");
INSERT INTO 7ja_postmeta VALUES("5546","715","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5547","715","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5548","715","_edit_lock","1676435345:1");
INSERT INTO 7ja_postmeta VALUES("5549","715","ekit_post_views_count","3");
INSERT INTO 7ja_postmeta VALUES("5551","353","ekit_post_views_count","2");
INSERT INTO 7ja_postmeta VALUES("5555","715","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5556","715","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5557","715","_elementor_data","[{\"id\":\"4edf886a\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.70999999999999996447286321199499070644378662109375,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_text\":\"New\",\"background_background\":\"gradient\",\"background_color\":\"#26B6A3\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"44d4f22d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5d252b78\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"350\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Logo.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"d302d2e\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"296a70a4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d1d1bc7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"align_items\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"color_menu_item_hover\":\"globals\\/colors?id=text\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=text\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2768d37d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"723e2b37\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/latitude39creative\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"#00000000\",\"item_icon_secondary_color\":\"#26B6A3\",\"__globals__\":{\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"globals\\/colors?id=primary\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"b630e77\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/latitude39creative\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#26B6A300\",\"__globals__\":{\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"globals\\/colors?id=primary\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"45e4b7c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023 | Latitude39Creative\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5558","718","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5559","718","_elementor_template_type","footer");
INSERT INTO 7ja_postmeta VALUES("5560","718","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5561","718","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5562","718","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5563","718","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5564","718","_elementor_data","[{\"id\":\"4edf886a\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.70999999999999996447286321199499070644378662109375,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_text\":\"New\",\"background_background\":\"gradient\",\"background_color\":\"#26B6A3\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"44d4f22d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5d252b78\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"350\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Logo.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"d302d2e\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"296a70a4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d1d1bc7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"align_items\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"color_menu_item_hover\":\"globals\\/colors?id=text\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=text\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2768d37d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"723e2b37\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/latitude39creative\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"#00000000\",\"item_icon_secondary_color\":\"#26B6A3\",\"__globals__\":{\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"globals\\/colors?id=primary\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"b630e77\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/latitude39creative\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#26B6A300\",\"__globals__\":{\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"globals\\/colors?id=primary\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"45e4b7c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023 Latitude39Creative\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5565","715","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5567","715","_elementor_conditions","a:1:{i:0;s:15:\"include/general\";}");
INSERT INTO 7ja_postmeta VALUES("5568","719","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5569","719","_elementor_template_type","footer");
INSERT INTO 7ja_postmeta VALUES("5570","719","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5571","719","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5572","719","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5573","719","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5574","719","_elementor_data","[{\"id\":\"4edf886a\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.70999999999999996447286321199499070644378662109375,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_text\":\"New\",\"background_background\":\"gradient\",\"background_color\":\"#26B6A3\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"44d4f22d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5d252b78\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"350\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Logo.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"d302d2e\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"296a70a4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d1d1bc7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"align_items\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"color_menu_item_hover\":\"globals\\/colors?id=text\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=text\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"2768d37d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"723e2b37\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/latitude39creative\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"#00000000\",\"item_icon_secondary_color\":\"#26B6A3\",\"__globals__\":{\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"globals\\/colors?id=primary\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"b630e77\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/latitude39creative\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#26B6A300\",\"__globals__\":{\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"globals\\/colors?id=primary\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"center\",\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"45e4b7c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023 | Latitude39Creative\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5575","719","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5576","719","_elementor_conditions","a:1:{i:0;s:15:\"include/general\";}");
INSERT INTO 7ja_postmeta VALUES("5577","715","_elementor_controls_usage","a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:2:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:2;s:17:\"pa_badge_bg_image\";i:2;s:26:\"pa_badge_bg_video_fallback\";i:2;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:2;s:23:\"pa_cursor_bgColor_image\";i:2;s:32:\"pa_cursor_bgColor_video_fallback\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:1:{s:11:\"align_items\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:15:\"hover_animation\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:1;s:21:\"space_between_widgets\";i:1;}s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:1:{s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:26:\"section_background_overlay\";a:8:{s:29:\"background_overlay_background\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:32:\"background_overlay_gradient_type\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}s:18:\"section_background\";a:9:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}s:22:\"section_premium_cursor\";a:3:{s:13:\"pa_cursor_img\";i:1;s:23:\"pa_cursor_bgColor_image\";i:1;s:32:\"pa_cursor_bgColor_video_fallback\";i:1;}}s:6:\"layout\";a:1:{s:21:\"section_premium_badge\";a:3:{s:12:\"pa_badge_img\";i:1;s:17:\"pa_badge_bg_image\";i:1;s:26:\"pa_badge_bg_video_fallback\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("5672","729","_elementor_is_screenshot","1");
INSERT INTO 7ja_postmeta VALUES("5673","729","_wp_attached_file","elementor/screenshots/Elementor-post-screenshot_715_2023-02-15-04-00-59_4afffbf1.png");
INSERT INTO 7ja_postmeta VALUES("5674","715","_elementor_screenshot","a:2:{s:2:\"id\";i:729;s:3:\"url\";s:151:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_715_2023-02-15-04-00-59_4afffbf1.png\";}");
INSERT INTO 7ja_postmeta VALUES("5675","730","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5676","730","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("5677","730","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5678","730","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5679","730","_elementor_data","[{\"id\":\"44ee88f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6eb9ace1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"21794687\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Single {{Project}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=7980221\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"380dd0b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ Single Project<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"2195f388\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"330d6191\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3e92dca\",\"elType\":\"widget\",\"settings\":{\"title\":\"June 03, 2021\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"68bc0a45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Content Video Marketing\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"71dd066e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"277fdea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat.\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"265899be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32932bac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7184867a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"30aaabad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rometheme\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"7cdb48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1390e966\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"4b8133e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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},{\"id\":\"104015bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"556d512b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4339a993\",\"elType\":\"widget\",\"settings\":{\"title\":\"Website\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"2ea90363\",\"elType\":\"widget\",\"settings\":{\"title\":\"www.yourwebsitehere.com\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"15cf891c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6407f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Media\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"46a666f7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6aba3dc\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"align_mobile\":\"left\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"22c96095\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6d1ad756\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"378\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/apelah.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":false}],\"isInner\":false},{\"id\":\"494cbc9\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c3e6a6\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1756cd3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction & Challenge\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"550b67e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.<\\/p><p>Augue neque gravida in fermentum et. Urna et pharetra pharetra massa massa ultricies mi. In massa tempor nec feugiat nisl pretium fusce. Eu lobortis elementum nibh tellus molestie nunc non.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"15d63702\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"video\"},{\"id\":\"56f5e465\",\"elType\":\"widget\",\"settings\":{\"title\":\"Innovation will Almost always beat mere Talent\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"7a193b03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"f846b2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"__globals__\":{\"color\":\"globals\\/colors?id=6fc639b\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"63abbf2c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7941d3f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":6.2469999999999998863131622783839702606201171875,\"content_position\":\"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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4b100227\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share :\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6aba3dc\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"3ea81da6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":93.7099999999999937472239253111183643341064453125,\"content_position\":\"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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"24a77758\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"left\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5680","731","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5681","731","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("5682","731","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5683","731","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5684","731","_elementor_data","[{\"id\":\"44ee88f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6eb9ace1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"21794687\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Single {{Project}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=7980221\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"380dd0b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ Single Project<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"2195f388\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"330d6191\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3e92dca\",\"elType\":\"widget\",\"settings\":{\"title\":\"June 03, 2021\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"68bc0a45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Content Video Marketing\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"71dd066e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"277fdea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat.\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"265899be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32932bac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7184867a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"30aaabad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rometheme\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"7cdb48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1390e966\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"4b8133e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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},{\"id\":\"104015bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"556d512b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4339a993\",\"elType\":\"widget\",\"settings\":{\"title\":\"Website\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"2ea90363\",\"elType\":\"widget\",\"settings\":{\"title\":\"www.yourwebsitehere.com\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"15cf891c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6407f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Media\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"46a666f7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6aba3dc\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6fc639b\"},\"_animation\":\"none\",\"align_mobile\":\"left\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"22c96095\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6d1ad756\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"378\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/apelah.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":false}],\"isInner\":false},{\"id\":\"494cbc9\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c3e6a6\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1756cd3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction & Challenge\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"550b67e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.<\\/p><p>Augue neque gravida in fermentum et. Urna et pharetra pharetra massa massa ultricies mi. In massa tempor nec feugiat nisl pretium fusce. Eu lobortis elementum nibh tellus molestie nunc non.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"15d63702\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"id\":\"379\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/11.jpg\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"video\"},{\"id\":\"56f5e465\",\"elType\":\"widget\",\"settings\":{\"title\":\"Innovation will Almost always beat mere Talent\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"7a193b03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"f846b2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"__globals__\":{\"color\":\"globals\\/colors?id=6fc639b\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"63abbf2c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7941d3f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":6.2469999999999998863131622783839702606201171875,\"content_position\":\"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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4b100227\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share :\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6aba3dc\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"3ea81da6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":93.7099999999999937472239253111183643341064453125,\"content_position\":\"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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"24a77758\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"3c19aba\",\"item_icon_color\":\"custom\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3147707\",\"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\":\"b630e77\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#5CD2B9\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_primary_color\":\"#F9F9F9\",\"hover_animation\":\"float\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=a88f8f1\",\"icon_secondary_color\":\"globals\\/colors?id=6fc639b\",\"hover_primary_color\":\"globals\\/colors?id=a88f8f1\",\"hover_secondary_color\":\"globals\\/colors?id=6aba3dc\"},\"_animation\":\"none\",\"align_mobile\":\"left\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5685","730","_elementor_page_assets","a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5686","730","_elementor_controls_usage","a:10:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:1;s:22:\"ekit_heading_title_tag\";i:1;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:1;s:22:\"ekit_heading_sub_title\";i:1;s:31:\"ekit_heading_sub_title_position\";i:1;s:26:\"ekit_heading_sub_title_tag\";i:1;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:1;s:24:\"ekit_heading_extra_title\";i:1;s:16:\"desciption_width\";i:1;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:1;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:1;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:5:{s:32:\"ekit_heading_focused_title_color\";i:1;s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:1:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:1;s:28:\"ekit_heading_seperator_color\";i:1;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:10;s:21:\"space_between_widgets\";i:5;s:16:\"content_position\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:12;s:11:\"header_size\";i:12;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:2;s:5:\"align\";i:2;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:4:{s:10:\"icon_color\";i:2;s:18:\"icon_primary_color\";i:2;s:20:\"icon_secondary_color\";i:2;s:9:\"icon_size\";i:2;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:2;s:15:\"hover_animation\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("5687","730","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("5688","730","envato_tk_source_kit","348");
INSERT INTO 7ja_postmeta VALUES("5689","730","envato_tk_source_index","11");
INSERT INTO 7ja_postmeta VALUES("5691","75","ekit_post_views_count","319");
INSERT INTO 7ja_postmeta VALUES("5692","24","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5693","732","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5694","732","_elementor_template_type","single");
INSERT INTO 7ja_postmeta VALUES("5695","732","_elementor_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("5696","732","_elementor_pro_version","3.9.0");
INSERT INTO 7ja_postmeta VALUES("5697","732","_elementor_data","[{\"id\":\"17c412c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"f361b93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1a0fe8cc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\" {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=7980221\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_typography_typography\":\"custom\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1236d9e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"_title\":\"Post Content\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"4364151e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"71c637bd\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.2)\"},\"align_mobile\":\"center\",\"image\":{\"id\":26,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"24092ee0\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1534d3ed\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"409e21a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Share Inner Section\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=0d046a4\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"79a55826\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4107483\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\" Share This {{Post}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Varela Round\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_typography_typography\":\"custom\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"},{\"id\":\"5e3dd8f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6a2e570c\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"7a6ea4f\"},{\"button\":\"linkedin\",\"_id\":\"709faff\"},{\"button\":\"email\",\"_id\":\"f5e66bc\"}],\"view\":\"icon\",\"skin\":\"flat\",\"alignment\":\"left\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"button_size\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"icon_size\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"color_source\":\"custom\",\"alignment_mobile\":\"center\",\"__globals__\":{\"secondary_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"\",\"secondary_color_hover\":\"globals\\/colors?id=accent\",\"primary_color_hover\":\"\"},\"pa_condition_repeater\":[],\"shape\":\"circle\",\"primary_color\":\"#FFFEFE00\",\"secondary_color\":\"#26B6A3\",\"primary_color_hover\":\"#FFFEFE00\",\"secondary_color_hover\":\"#26B6A3\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5ddcd449\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"43a8c094\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"3e47e593\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_color\":\"rgba(159,163,173,0.2)\",\"arrow\":\"fa fa-arrow-left\",\"borders_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"borders_spacing\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"__globals__\":{\"label_color\":\"globals\\/colors?id=primary\",\"label_typography_typography\":\"globals\\/typography?id=cdaaf6a\",\"text_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"arrow_color\":\"globals\\/colors?id=primary\",\"sep_color\":\"globals\\/colors?id=primary\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"5ca868ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"More To Explore\",\"align_mobile\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[],\"title_color\":\"#26B6A3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1fc46ebb\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"2\",\"classic_posts_per_page\":\"2\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"posts_include\":[],\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#000000\",\"pagination_hover_color\":\"#00ce1b\",\"pagination_active_color\":\"#00ce1b\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"cards_columns\":\"2\",\"cards_posts_per_page\":\"2\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"cards_meta_data\":[\"author\",\"date\"],\"cards_show_read_more\":\"\",\"cards_show_avatar\":\"\",\"classic_alignment\":\"center\",\"cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"cards_alignment\":\"center\",\"cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_card_padding\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_badge_position\":\"left\",\"cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_thumbnail_size_size\":\"full\",\"__globals__\":{\"cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"cards_badge_color\":\"globals\\/colors?id=f898f31\",\"cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"cards_title_color\":\"globals\\/colors?id=primary\",\"cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"cards_meta_color\":\"globals\\/colors?id=text\",\"cards_meta_separator_color\":\"globals\\/colors?id=text\",\"cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"cards_excerpt_color\":\"globals\\/colors?id=text\",\"cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"classic_title_color\":\"globals\\/colors?id=primary\",\"classic_read_more_color\":\"globals\\/colors?id=primary\"},\"pa_condition_repeater\":[],\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("5698","732","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("5699","732","_elementor_conditions","a:1:{i:0;s:21:\"include/singular/post\";}");
INSERT INTO 7ja_postmeta VALUES("5700","732","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("5701","732","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5702","732","_elementor_screenshot","a:2:{s:2:\"id\";i:328;s:3:\"url\";s:150:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_24_2022-12-14-00-41-33_2bc801ba.png\";}");
INSERT INTO 7ja_postmeta VALUES("5704","732","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5706","733","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5707","733","_elementor_template_type","single");
INSERT INTO 7ja_postmeta VALUES("5708","733","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5709","733","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5710","733","_elementor_data","[{\"id\":\"17c412c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"f361b93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1a0fe8cc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\" {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=7980221\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_typography_typography\":\"custom\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1236d9e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"_title\":\"Post Content\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"4364151e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"71c637bd\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.2)\"},\"align_mobile\":\"center\",\"image\":{\"id\":26,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"24092ee0\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1534d3ed\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"409e21a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Share Inner Section\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=0d046a4\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"79a55826\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4107483\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\" Share This {{Post}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Varela Round\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_typography_typography\":\"custom\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"},{\"id\":\"5e3dd8f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"6a2e570c\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"7a6ea4f\"},{\"button\":\"linkedin\",\"_id\":\"709faff\"},{\"button\":\"email\",\"_id\":\"f5e66bc\"},{\"_id\":\"1b53a75\",\"button\":\"twitter\"}],\"view\":\"icon\",\"skin\":\"flat\",\"alignment\":\"left\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"button_size\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"icon_size\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"color_source\":\"custom\",\"alignment_mobile\":\"center\",\"__globals__\":{\"secondary_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"\",\"secondary_color_hover\":\"globals\\/colors?id=accent\",\"primary_color_hover\":\"\"},\"pa_condition_repeater\":[],\"shape\":\"circle\",\"primary_color\":\"#FFFEFE00\",\"secondary_color\":\"#26B6A3\",\"primary_color_hover\":\"#FFFEFE00\",\"secondary_color_hover\":\"#26B6A3\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5ddcd449\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"43a8c094\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"3e47e593\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_color\":\"rgba(159,163,173,0.2)\",\"arrow\":\"fa fa-arrow-left\",\"borders_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"borders_spacing\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"__globals__\":{\"label_color\":\"globals\\/colors?id=primary\",\"label_typography_typography\":\"globals\\/typography?id=cdaaf6a\",\"text_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"arrow_color\":\"globals\\/colors?id=primary\",\"sep_color\":\"globals\\/colors?id=primary\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"5ca868ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"More To Explore\",\"align_mobile\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[],\"title_color\":\"#26B6A3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1fc46ebb\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"2\",\"classic_posts_per_page\":\"2\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"posts_include\":[],\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#000000\",\"pagination_hover_color\":\"#00ce1b\",\"pagination_active_color\":\"#00ce1b\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"cards_columns\":\"2\",\"cards_posts_per_page\":\"2\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"cards_meta_data\":[\"author\",\"date\"],\"cards_show_read_more\":\"\",\"cards_show_avatar\":\"\",\"classic_alignment\":\"center\",\"cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"cards_alignment\":\"center\",\"cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_card_padding\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_badge_position\":\"left\",\"cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_thumbnail_size_size\":\"full\",\"__globals__\":{\"cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"cards_badge_color\":\"globals\\/colors?id=f898f31\",\"cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"cards_title_color\":\"globals\\/colors?id=primary\",\"cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"cards_meta_color\":\"globals\\/colors?id=text\",\"cards_meta_separator_color\":\"globals\\/colors?id=text\",\"cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"cards_excerpt_color\":\"globals\\/colors?id=text\",\"cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"classic_title_color\":\"globals\\/colors?id=primary\",\"classic_read_more_color\":\"globals\\/colors?id=primary\"},\"pa_condition_repeater\":[],\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("5711","733","_elementor_page_assets","a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5712","733","_elementor_conditions","a:1:{i:0;s:21:\"include/singular/post\";}");
INSERT INTO 7ja_postmeta VALUES("5713","733","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("5714","733","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5715","733","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5716","24","_elementor_controls_usage","a:10:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:22:\"ekit_heading_title_tag\";i:2;s:17:\"show_title_border\";i:2;s:16:\"title_float_left\";i:2;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:2;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:2;s:41:\"ekit_heading_title_typography_font_family\";i:2;s:39:\"ekit_heading_title_typography_font_size\";i:2;s:41:\"ekit_heading_title_typography_font_weight\";i:2;s:41:\"ekit_heading_title_typography_line_height\";i:2;}s:36:\"ekit_heading_section_sub_title_style\";a:1:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}s:40:\"ekit_heading_section_focused_title_style\";a:5:{s:49:\"ekit_heading_focused_title_typography_font_family\";i:2;s:47:\"ekit_heading_focused_title_typography_font_size\";i:2;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:2;s:49:\"ekit_heading_focused_title_typography_line_height\";i:2;s:48:\"ekit_heading_focused_title_typography_typography\";i:2;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:1;s:16:\"content_position\";i:1;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:6:\"_title\";i:2;s:13:\"content_width\";i:1;}}}}s:25:\"theme-post-featured-image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:1;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:13:\"share-buttons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:23:\"section_buttons_content\";a:6:{s:13:\"share_buttons\";i:1;s:4:\"view\";i:1;s:4:\"skin\";i:1;s:9:\"alignment\";i:1;s:16:\"alignment_mobile\";i:1;s:5:\"shape\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_buttons_style\";a:9:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"button_size\";i:1;s:9:\"icon_size\";i:1;s:12:\"color_source\";i:1;s:13:\"primary_color\";i:1;s:15:\"secondary_color\";i:1;s:19:\"primary_color_hover\";i:1;s:21:\"secondary_color_hover\";i:1;}}}}s:18:\"theme-post-content\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:15:\"post-navigation\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:11:\"arrow_style\";a:2:{s:10:\"arrow_size\";i:1;s:13:\"arrow_padding\";i:1;}s:21:\"borders_section_style\";a:2:{s:13:\"borders_width\";i:1;s:15:\"borders_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}s:7:\"content\";a:1:{s:31:\"section_post_navigation_content\";a:1:{s:5:\"arrow\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:6:{s:27:\"motion_fx_translateY_effect\";i:1;s:26:\"motion_fx_translateY_speed\";i:1;s:34:\"motion_fx_translateY_affectedRange\";i:1;s:24:\"motion_fx_opacity_effect\";i:1;s:23:\"motion_fx_opacity_range\";i:1;s:17:\"motion_fx_devices\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:1;s:23:\"typography_word_spacing\";i:1;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:15:\"classic_columns\";i:1;s:22:\"classic_posts_per_page\";i:1;s:13:\"cards_columns\";i:1;s:20:\"cards_posts_per_page\";i:1;s:16:\"cards_item_ratio\";i:1;s:15:\"cards_meta_data\";i:1;s:20:\"cards_show_read_more\";i:1;s:17:\"cards_show_avatar\";i:1;s:25:\"cards_thumbnail_size_size\";i:1;}s:13:\"section_query\";a:1:{s:13:\"posts_include\";i:1;}}s:5:\"style\";a:6:{s:24:\"section_pagination_style\";a:3:{s:16:\"pagination_color\";i:1;s:22:\"pagination_hover_color\";i:1;s:23:\"pagination_active_color\";i:1;}s:29:\"classic_section_design_layout\";a:1:{s:17:\"classic_alignment\";i:1;}s:27:\"cards_section_design_layout\";a:2:{s:13:\"cards_row_gap\";i:1;s:15:\"cards_alignment\";i:1;}s:25:\"cards_section_design_card\";a:2:{s:24:\"cards_card_border_radius\";i:1;s:18:\"cards_card_padding\";i:1;}s:26:\"cards_section_design_image\";a:5:{s:19:\"cards_image_spacing\";i:1;s:20:\"cards_badge_position\";i:1;s:18:\"cards_badge_radius\";i:1;s:16:\"cards_badge_size\";i:1;s:18:\"cards_badge_margin\";i:1;}s:28:\"cards_section_design_content\";a:2:{s:21:\"cards_excerpt_spacing\";i:1;s:23:\"cards_read_more_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("5719","734","_elementor_is_screenshot","1");
INSERT INTO 7ja_postmeta VALUES("5720","734","_wp_attached_file","elementor/screenshots/Elementor-post-screenshot_24_2023-02-15-04-12-46_373262ba.png");
INSERT INTO 7ja_postmeta VALUES("5721","24","_elementor_screenshot","a:2:{s:2:\"id\";i:734;s:3:\"url\";s:150:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_24_2023-02-15-04-12-46_373262ba.png\";}");
INSERT INTO 7ja_postmeta VALUES("5731","738","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5732","738","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("5733","738","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5734","738","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5735","738","_elementor_data","[{\"id\":\"26dff650\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b1fe3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"535f8f41\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{News}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=7980221\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"76139865\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ Latest News<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"7e20603f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2889c7ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7deb4701\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{News}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"66fd7a64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"5c582afb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39b8225e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"435dc4de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"735\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N1.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"360d2782\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consectetur Adipiscing Elit Curabitur Vel Ornare\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"751e61df\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"globals\\/typography?id=b859a05\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"41d01358\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true},{\"id\":\"5df74cba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":50,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3c1ebdda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"736\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N2.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"24ebad83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ut Sagittis Consectetur Ante t Tincidunt\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"title_color\":\"#5CD2B9\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"3a2e24e3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"670bf6fd\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true},{\"id\":\"43e2f154\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":50,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5f2c9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"737\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N3.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"223c8e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"In HacHhabitasse Platea<br>Dictumst\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"title_color\":\"#5CD2B9\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"4b0ff124\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"1a31493a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true}],\"isInner\":true},{\"id\":\"6fe37ccb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3063b38a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":50,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3b912547\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"736\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N2.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"5c1bfab8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ut Sagittis Consectetur Ante t Tincidunt\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"title_color\":\"#5CD2B9\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"23175e8\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"7ede7685\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true},{\"id\":\"6d6ff359\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":50,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"77c426b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"737\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N3.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"1edb20f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"In HacHhabitasse Platea<br>Dictumst\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"title_color\":\"#5CD2B9\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"5cc8e245\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"10ca0efe\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true},{\"id\":\"2b4bf2ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5b466f89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"735\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N1.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"2cbd3b07\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consectetur Adipiscing Elit Curabitur Vel Ornare\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"2667cee3\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"globals\\/typography?id=b859a05\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"f03551d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5736","739","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5737","739","_elementor_template_type","page");
INSERT INTO 7ja_postmeta VALUES("5738","739","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5739","739","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5740","739","_elementor_data","[{\"id\":\"26dff650\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"437\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/a-aawfa.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"background_video_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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b1fe3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"535f8f41\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{News}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=7980221\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"76139865\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> \\/ Latest News<\\/p>\",\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=6aba3dc\",\"typography_typography\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"7e20603f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2889c7ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"7deb4701\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{News}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"globals\\/colors?id=6aba3dc\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=cad98b2\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=cad98b2\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"elementskit-heading\"},{\"id\":\"66fd7a64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet,\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"align\":\"center\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"5c582afb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39b8225e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"435dc4de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"735\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N1.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"360d2782\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consectetur Adipiscing Elit Curabitur Vel Ornare\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"751e61df\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"globals\\/typography?id=b859a05\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"41d01358\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true},{\"id\":\"5df74cba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":50,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3c1ebdda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"736\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N2.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"24ebad83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ut Sagittis Consectetur Ante t Tincidunt\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"title_color\":\"#5CD2B9\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"3a2e24e3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"670bf6fd\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true},{\"id\":\"43e2f154\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":50,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5f2c9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"737\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N3.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"223c8e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"In HacHhabitasse Platea<br>Dictumst\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"title_color\":\"#5CD2B9\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"4b0ff124\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"1a31493a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true}],\"isInner\":true},{\"id\":\"6fe37ccb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_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\":[],\"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\":[],\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3063b38a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":50,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"3b912547\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"736\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N2.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"5c1bfab8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ut Sagittis Consectetur Ante t Tincidunt\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"title_color\":\"#5CD2B9\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"23175e8\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"7ede7685\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true},{\"id\":\"6d6ff359\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":50,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"77c426b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"737\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N3.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"1edb20f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"In HacHhabitasse Platea<br>Dictumst\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"title_color\":\"#5CD2B9\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"5cc8e245\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"10ca0efe\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true},{\"id\":\"2b4bf2ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top 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\":[],\"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\":[],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"5b466f89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"735\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/N1.jpg\"},\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"2cbd3b07\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consectetur Adipiscing Elit Curabitur Vel Ornare\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=6fc639b\",\"typography_typography\":\"\"},\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"2667cee3\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"globals\\/colors?id=a8362ae\",\"typography_typography\":\"globals\\/typography?id=b859a05\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.<\\/p>\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":\"f03551d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"June 03, 2021\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"b42b572\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Business\",\"selected_icon\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"_id\":\"2e7c61a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=6fc639b\",\"icon_color_hover\":\"globals\\/colors?id=6aba3dc\",\"text_color\":\"globals\\/colors?id=6aba3dc\",\"text_color_hover\":\"globals\\/colors?id=6fc639b\",\"icon_typography_typography\":\"globals\\/typography?id=a034570\"},\"icon_color\":\"#5CD2B9\",\"icon_color_hover\":\"#F9F9F9\",\"text_color\":\"#F9F9F9\",\"text_color_hover\":\"#5CD2B9\",\"pa_condition_repeater\":[],\"pa_cursor_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_cursor_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_cursor_bgColor_slideshow_gallery\":[],\"pa_badge_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"solid\"},\"pa_badge_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pa_badge_bg_slideshow_gallery\":[],\"premium_mscroll_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_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\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5741","738","_elementor_page_assets","a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5742","738","_elementor_controls_usage","a:7:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:22:\"ekit_heading_title_tag\";i:2;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:2;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:5:{s:32:\"ekit_heading_focused_title_color\";i:2;s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;s:28:\"ekit_heading_sub_title_color\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:2;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:6;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:8;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:6;s:27:\"background_hover_background\";i:6;s:27:\"background_hover_transition\";i:6;s:29:\"background_hover_color_b_stop\";i:6;s:30:\"background_hover_gradient_type\";i:6;s:34:\"background_hover_gradient_position\";i:6;}s:14:\"section_border\";a:1:{s:12:\"border_width\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:6;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:11:\"title_color\";i:4;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:6;s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:6;s:10:\"icon_color\";i:6;s:16:\"icon_color_hover\";i:6;}s:18:\"section_text_style\";a:2:{s:10:\"text_color\";i:6;s:16:\"text_color_hover\";i:6;}}}}}");
INSERT INTO 7ja_postmeta VALUES("5743","738","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("5744","738","envato_tk_source_kit","348");
INSERT INTO 7ja_postmeta VALUES("5745","738","envato_tk_source_index","12");
INSERT INTO 7ja_postmeta VALUES("5764","63","ekit_post_views_count","448");
INSERT INTO 7ja_postmeta VALUES("5769","31","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5770","31","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5771","741","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5772","741","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("5773","741","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("5774","741","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("5775","741","_elementor_data","[{\"id\":\"4710bd78\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"fb84173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1cbe0216\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"45e56de5\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"475840da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"27f6ab1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6871aa89\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"1d4d61ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"45482f11\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"605453a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"193e422b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"+(827) 123 - 456 - 7891\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"295c2a0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Mail Us\",\"description_text\":\"info@evaniayogastudio.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5776","741","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("5777","741","_elementor_conditions","a:1:{i:0;s:15:\"include/archive\";}");
INSERT INTO 7ja_postmeta VALUES("5778","741","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("5779","741","_elementor_screenshot","a:2:{s:2:\"id\";i:299;s:3:\"url\";s:150:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_31_2022-12-08-17-53-59_7bfb09ac.png\";}");
INSERT INTO 7ja_postmeta VALUES("5780","741","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5781","741","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5795","730","ekit_post_views_count","1");
INSERT INTO 7ja_postmeta VALUES("5817","745","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5818","745","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("5819","745","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("5820","745","_elementor_pro_version","3.8.1");
INSERT INTO 7ja_postmeta VALUES("5821","745","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("5822","745","_elementor_data","[{\"id\":\"81757ef\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"Hero\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"background_overlay_position_tablet\":\"center left\",\"background_overlay_position_mobile\":\"center left\",\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"background_overlay_image\":{\"id\":80,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/BG-Social-Media.png\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"12f82bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"center\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"442ab477\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Media\",\"align_mobile\":\"center\",\"align\":\"center\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2c11d45\",\"title_color\":\"globals\\/colors?id=f898f31\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34ee84e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to get more likes and shares\",\"align_mobile\":\"center\",\"align\":\"center\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7aadb3f2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Intro\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":82,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/BG-Service-one.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_overlay_position_tablet\":\"initial\",\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":\"-261\",\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":\"599\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"background_overlay_size\":\"cover\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1f9d5d22\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1e99fc69\",\"elType\":\"widget\",\"settings\":{\"title\":\"engage audiences with increased Online Presence\",\"align_mobile\":\"center\",\"align\":\"center\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61cb3406\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Social Media Marketing Strategy\",\"align_mobile\":\"center\",\"align\":\"center\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31f002e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7d5fdb8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Image Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"67c5f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":81,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Pic-Intro-Service-social-media-1.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"50\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"364a9950\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Content Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"68c47cba\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\'s Trending Now\",\"align_mobile\":\"center\",\"header_size\":\"h3\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8a9e51\",\"title_color\":\"globals\\/colors?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68614a00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisla.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ba6c4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam. Nulla euismod a mi eu elentum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet.\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"57e8c967\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"_title\":\"Content Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"347f918c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\'t Miss Out\",\"align_mobile\":\"center\",\"header_size\":\"h3\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f8a9e51\",\"title_color\":\"globals\\/colors?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"240b40f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisla.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bdf0692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam. Nulla euismod a mi eu elentum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet.\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73318e83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Strong Points\\u200b\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"eadf724\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"_title\":\"Content Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3a1076a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Company Strengths at a glance\",\"align_mobile\":\"center\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7df3ab6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Strong Points\",\"align_mobile\":\"center\",\"align_tablet\":\"left\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ac0f575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, conse the all ctetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra olla augue. Maecenas consequat, dolor eget pharetra all imperdiet, dolor urna luctus urna, id porta tellus leo.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"},{\"id\":\"9869321\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_title\":\"Progress Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"386e9303\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facebook\",\"percent\":{\"unit\":\"%\",\"size\":\"92\",\"sizes\":[]},\"inner_text\":\"\",\"bar_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=primary\",\"bar_bg_color\":\"globals\\/colors?id=0d046a4\",\"bar_inline_color\":\"globals\\/colors?id=f898f31\",\"bar_inner_typography_typography\":\"globals\\/typography?id=0009af8\",\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=cdaaf6a\"},\"bar_color\":\"#4632DA\",\"bar_inline_color\":\"#FFFFFF\",\"bar_inner_typography_typography\":\"custom\",\"bar_inner_typography_font_family\":\"Montserrat\",\"bar_inner_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_weight\":\"400\",\"bar_inner_typography_text_transform\":\"capitalize\",\"bar_inner_typography_font_style\":\"normal\",\"bar_inner_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"title_color\":\"#3D4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"bar_inner_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"bar_inner_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"bar_inner_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"759ecb29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"percent\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"inner_text\":\"\",\"bar_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=primary\",\"bar_bg_color\":\"globals\\/colors?id=0d046a4\",\"bar_inline_color\":\"globals\\/colors?id=f898f31\",\"bar_inner_typography_typography\":\"globals\\/typography?id=0009af8\",\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=cdaaf6a\"},\"bar_color\":\"#4632DA\",\"bar_inline_color\":\"#FFFFFF\",\"bar_inner_typography_typography\":\"custom\",\"bar_inner_typography_font_family\":\"Montserrat\",\"bar_inner_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_weight\":\"400\",\"bar_inner_typography_text_transform\":\"capitalize\",\"bar_inner_typography_font_style\":\"normal\",\"bar_inner_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"title_color\":\"#3D4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"92faab2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Linkedin\",\"percent\":{\"unit\":\"%\",\"size\":\"95\",\"sizes\":[]},\"inner_text\":\"\",\"bar_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=primary\",\"bar_bg_color\":\"globals\\/colors?id=0d046a4\",\"bar_inline_color\":\"globals\\/colors?id=f898f31\",\"bar_inner_typography_typography\":\"globals\\/typography?id=0009af8\",\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=cdaaf6a\"},\"bar_color\":\"#4632DA\",\"bar_inline_color\":\"#FFFFFF\",\"bar_inner_typography_typography\":\"custom\",\"bar_inner_typography_font_family\":\"Montserrat\",\"bar_inner_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_weight\":\"400\",\"bar_inner_typography_text_transform\":\"capitalize\",\"bar_inner_typography_font_style\":\"normal\",\"bar_inner_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"title_color\":\"#3D4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"1c10e962\",\"elType\":\"widget\",\"settings\":{\"title\":\"YouTube\",\"percent\":{\"unit\":\"%\",\"size\":\"98\",\"sizes\":[]},\"inner_text\":\"\",\"bar_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=primary\",\"bar_bg_color\":\"globals\\/colors?id=0d046a4\",\"bar_inline_color\":\"globals\\/colors?id=f898f31\",\"bar_inner_typography_typography\":\"globals\\/typography?id=0009af8\",\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=cdaaf6a\"},\"bar_color\":\"#4632DA\",\"bar_inline_color\":\"#FFFFFF\",\"bar_inner_typography_typography\":\"custom\",\"bar_inner_typography_font_family\":\"Montserrat\",\"bar_inner_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bar_inner_typography_font_weight\":\"400\",\"bar_inner_typography_text_transform\":\"capitalize\",\"bar_inner_typography_font_style\":\"normal\",\"bar_inner_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"title_color\":\"#3D4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"680d5ede\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":\"360\",\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Customized\\u00a0 Strategy\\u200b\",\"background_overlay_image\":{\"id\":85,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/BG-Join-Clients.png\"},\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"830\",\"sizes\":[]},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18c67c57\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"content_position\":\"center\",\"_inline_size_tablet\":\"50\",\"_title\":\"Images Column\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3d341608\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":83,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Bitmap-Copy-6.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":\"45\",\"sizes\":[]},\"align_tablet\":\"right\",\"align_mobile\":\"right\",\"width_mobile\":{\"unit\":\"%\",\"size\":\"55\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"65\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.6\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"179829c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":84,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/pic-copy-2.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"300\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"75\",\"sizes\":[]},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"82\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.7\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4a2ebb9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"content_position\":\"center\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"_title\":\"Content Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1b9b3800\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tailor-Made Digital Marketing\",\"align_mobile\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31ae4603\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customized Social Media Strategy\",\"title_color\":\"#3D4459\",\"align_mobile\":\"center\",\"align_tablet\":\"left\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3452797a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adiop iscing elit, sed do eiusmod tempor inci didunt ult labore et dolore magna aliqua. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Euismod quis viverra nibh cras pulvinar. In massa tempor nec feugiat nisl pretium.\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dd7d174\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adiop iscing elit, sed do eiusmod tempor inci didunt ult labore et dolore magna aliqua. the off ullam or corper dignissim cras tincidunt lobortis feugiat. Euismod quis viverra nibh cras pulvinar. In massa tempor nec feugiat nisl pretium.\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14418389\",\"elType\":\"widget\",\"settings\":{\"text\":\"more at blog\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/marketing-digital-agency\\/category\\/beyond-news\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"button_text_color\":\"globals\\/colors?id=f898f31\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=f898f31\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"__dynamic__\":[],\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"617367f3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Share Knowledge\\u200b\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"682e34b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"40\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"45\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"100\",\"bottom\":\"30\",\"left\":\"100\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_title\":\"Content Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"60b9075f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bespoke Marketing Plans\",\"align_mobile\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26f5ce28\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'d love to share our knowledge and experience\",\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0170dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Maecenas consequat, dolor eget pharetra the all imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl purus risus, vel vestibulum semytu  commo vitae. Fusce vel arcu quam. anyti Nulla euismod a mi euot elentum.\",\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ffe589a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, congt the off tetur adipiscing elit. Mauris iaculis nec justo frwac fermen quisque rhoncus nisi sed suscit curus. Donec porta metus porta.\",\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"},{\"id\":\"18b0edc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":\"\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"12\",\"bottom\":\"18\",\"left\":\"12\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_title\":\"Features Column\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b500f0a\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"30077ce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay Connected\",\"align_mobile\":\"center\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6ed476c\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"335a27d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sittu olrot amet, consectetur adip scing elit. Proin rutrum euis the mod dolor, ultricies aliq luam ekolor.\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c1a527c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"2bf4d3a\"},{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9f4ea7e\"},{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c35865c\"},{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"713db7f\"},{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a3a140\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_self_align\":\"left\",\"text_indent\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"\"},{\"id\":\"7afb39dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":\"\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"12\",\"bottom\":\"18\",\"left\":\"12\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_title\":\"Feauters Column\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b500f0a\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"21da31a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Think Ahead\",\"align_mobile\":\"center\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6ed476c\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c31e7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sittu olrot amet, consectetur adip scing elit. Proin rutrum euis the mod dolor, ultricies aliq luam ekolor.\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79eaf5eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"2bf4d3a\"},{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9f4ea7e\"},{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c35865c\"},{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"713db7f\"},{\"text\":\"Lorem ipsum dolor sitrey\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a3a140\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_self_align\":\"left\",\"text_indent\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3ed7452a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"More Services\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":89,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/BG-more-Services.png\"},\"background_overlay_position\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"300\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23b75e34\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"c12b28e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Solve Real Problems\",\"align_mobile\":\"center\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5500b1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"what can we do for you?\",\"align_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d84b252\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":\"\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"c82cd56\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":\"\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"_title\":\"Column Service 1\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b500f0a\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4ffea91\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":86,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Social-media.svg\"},\"library\":\"svg\"},\"title_text\":\"Social Media\",\"description_text\":\"Lorem ipsum dolor sit orot amet, cons ctetur atrd piing elit.\\u200b\",\"icon_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"text_align\":\"left\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f32aeca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon\":\"fa fa-arrow-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"background_color\":\"rgba(255,255,255,0)\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"hover_animation\":\"grow\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/marketing-digital-agency\\/social-media\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":\"1\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"__dynamic__\":[],\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"3a8900e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":\"\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"_title\":\"Column Service 2\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b500f0a\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"44884ed2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":87,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/SEO.svg\"},\"library\":\"svg\"},\"title_text\":\"SEO\",\"description_text\":\"Lorem ipsum dolor sit orot amet, cons ctetur atrd piing elit.\\u200b\",\"icon_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"text_align\":\"left\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"467fd5b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon\":\"fa fa-arrow-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"background_color\":\"rgba(255,255,255,0)\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"hover_animation\":\"grow\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/marketing-digital-agency\\/social-media\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":\"1\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"__dynamic__\":[],\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"686c9c5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":\"\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"_title\":\"Column Service 3\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b500f0a\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cfebe2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":88,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/PPC.svg\"},\"library\":\"svg\"},\"title_text\":\"PPC\",\"description_text\":\"Lorem ipsum dolor sit orot amet, cons ctetur atrd piing elit.\\u200b\",\"icon_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"text_align\":\"left\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"75b606a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon\":\"fa fa-arrow-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"background_color\":\"rgba(255,255,255,0)\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"hover_animation\":\"grow\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/marketing-digital-agency\\/social-media\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":\"1\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"__dynamic__\":[],\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7718832d\",\"elType\":\"widget\",\"settings\":{\"text\":\"More Services\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/marketing-digital-agency\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"button_text_color\":\"globals\\/colors?id=f898f31\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=f898f31\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__dynamic__\":[],\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4dea6e98\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"665\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":29,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/CTA-Shapes.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"center left\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_top\":\"waves\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"230\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"CTA\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26334f00\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Content Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5e08379b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want To Boost Your Business Today?\",\"align\":\"left\",\"align_mobile\":\"center\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3feb4324\",\"elType\":\"widget\",\"settings\":{\"title\":\"drop us a line and keep in touch\",\"align\":\"left\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=f898f31\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d38447c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/marketing-digital-agency\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=f898f31\",\"hover_color\":\"globals\\/colors?id=f898f31\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":[],\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"},{\"id\":\"4c815924\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Image Column\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"cf5d698\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":90,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Bitmap-Copy-3.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"right\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"pa_condition_repeater\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("5823","745","_elementor_page_assets","a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5824","745","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("5826","315","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5827","746","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5828","746","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("5829","746","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("5830","746","_elementor_pro_version","3.8.1");
INSERT INTO 7ja_postmeta VALUES("5831","746","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5832","746","_elementor_data","[{\"id\":\"53429895\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"25d30b5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4c37edfd\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"42f2cabb\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"198f102\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"7576a785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"31955ad9\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"5ba79301\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7e2c037a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"75d7ba95\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2a2a5466\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"+(827) 123 - 456 - 7891\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6561909c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Mail Us\",\"description_text\":\"info@evaniayogastudio.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5833","746","_elementor_page_assets","a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5834","746","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("5836","746","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5837","315","_elementor_controls_usage","a:6:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:22:\"ekit_heading_title_tag\";i:2;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:2;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:5:{s:32:\"ekit_heading_focused_title_color\";i:2;s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;s:28:\"ekit_heading_sub_title_color\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:13:\"archive-posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:30:\"archive_classic_meta_separator\";i:1;s:33:\"archive_cards_thumbnail_size_size\";i:1;s:24:\"archive_cards_item_ratio\";i:1;s:28:\"archive_cards_read_more_text\";i:1;s:25:\"archive_cards_show_avatar\";i:1;s:28:\"archive_cards_show_read_more\";i:1;s:28:\"archive_cards_excerpt_length\";i:1;s:23:\"archive_cards_meta_data\";i:1;s:23:\"archive_classic_masonry\";i:1;}s:16:\"section_advanced\";a:1:{s:21:\"nothing_found_message\";i:1;}}s:5:\"style\";a:7:{s:33:\"archive_cards_section_design_card\";a:5:{s:27:\"archive_cards_card_bg_color\";i:1;s:32:\"archive_cards_card_border_radius\";i:1;s:31:\"archive_cards_meta_border_color\";i:1;s:26:\"archive_cards_card_padding\";i:1;s:26:\"archive_cards_hover_effect\";i:1;}s:34:\"archive_cards_section_design_image\";a:7:{s:28:\"archive_cards_badge_bg_color\";i:1;s:25:\"archive_cards_badge_color\";i:1;s:27:\"archive_cards_image_spacing\";i:1;s:28:\"archive_cards_badge_position\";i:1;s:26:\"archive_cards_badge_radius\";i:1;s:24:\"archive_cards_badge_size\";i:1;s:26:\"archive_cards_badge_margin\";i:1;}s:36:\"archive_cards_section_design_content\";a:6:{s:25:\"archive_cards_title_color\";i:1;s:27:\"archive_cards_excerpt_color\";i:1;s:29:\"archive_cards_read_more_color\";i:1;s:27:\"archive_cards_title_spacing\";i:1;s:29:\"archive_cards_excerpt_spacing\";i:1;s:31:\"archive_cards_read_more_spacing\";i:1;}s:24:\"section_pagination_style\";a:9:{s:16:\"pagination_color\";i:1;s:22:\"pagination_hover_color\";i:1;s:23:\"pagination_active_color\";i:1;s:18:\"pagination_spacing\";i:1;s:32:\"pagination_typography_typography\";i:1;s:33:\"pagination_typography_font_family\";i:1;s:31:\"pagination_typography_font_size\";i:1;s:33:\"pagination_typography_font_weight\";i:1;s:33:\"pagination_typography_line_height\";i:1;}s:27:\"section_nothing_found_style\";a:6:{s:19:\"nothing_found_color\";i:1;s:35:\"nothing_found_typography_typography\";i:1;s:36:\"nothing_found_typography_font_family\";i:1;s:34:\"nothing_found_typography_font_size\";i:1;s:36:\"nothing_found_typography_font_weight\";i:1;s:36:\"nothing_found_typography_line_height\";i:1;}s:35:\"archive_cards_section_design_layout\";a:2:{s:23:\"archive_cards_alignment\";i:1;s:21:\"archive_cards_row_gap\";i:1;}s:13:\"section_style\";a:2:{s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:2;s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:8:{s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:25:\"elementskit-contact-form7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:15:\"hover_animation\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;}s:17:\"section_style_box\";a:4:{s:10:\"icon_space\";i:3;s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;}}}}}");
INSERT INTO 7ja_postmeta VALUES("5844","750","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5845","750","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("5846","750","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5847","750","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5848","750","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5849","750","_elementor_data","[{\"id\":\"53429895\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"25d30b5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4c37edfd\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"42f2cabb\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"198f102\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"7576a785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"31955ad9\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"5ba79301\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7e2c037a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"75d7ba95\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2a2a5466\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"+(827) 123 - 456 - 7891\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6561909c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Mail Us\",\"description_text\":\"info@evaniayogastudio.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5850","750","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5851","750","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("5852","750","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5853","750","_elementor_controls_usage","a:6:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:22:\"ekit_heading_title_tag\";i:2;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:2;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:5:{s:32:\"ekit_heading_focused_title_color\";i:2;s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;s:28:\"ekit_heading_sub_title_color\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:13:\"archive-posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:30:\"archive_classic_meta_separator\";i:1;s:33:\"archive_cards_thumbnail_size_size\";i:1;s:24:\"archive_cards_item_ratio\";i:1;s:28:\"archive_cards_read_more_text\";i:1;s:25:\"archive_cards_show_avatar\";i:1;s:28:\"archive_cards_show_read_more\";i:1;s:28:\"archive_cards_excerpt_length\";i:1;s:23:\"archive_cards_meta_data\";i:1;s:23:\"archive_classic_masonry\";i:1;}s:16:\"section_advanced\";a:1:{s:21:\"nothing_found_message\";i:1;}}s:5:\"style\";a:7:{s:33:\"archive_cards_section_design_card\";a:5:{s:27:\"archive_cards_card_bg_color\";i:1;s:32:\"archive_cards_card_border_radius\";i:1;s:31:\"archive_cards_meta_border_color\";i:1;s:26:\"archive_cards_card_padding\";i:1;s:26:\"archive_cards_hover_effect\";i:1;}s:34:\"archive_cards_section_design_image\";a:7:{s:28:\"archive_cards_badge_bg_color\";i:1;s:25:\"archive_cards_badge_color\";i:1;s:27:\"archive_cards_image_spacing\";i:1;s:28:\"archive_cards_badge_position\";i:1;s:26:\"archive_cards_badge_radius\";i:1;s:24:\"archive_cards_badge_size\";i:1;s:26:\"archive_cards_badge_margin\";i:1;}s:36:\"archive_cards_section_design_content\";a:6:{s:25:\"archive_cards_title_color\";i:1;s:27:\"archive_cards_excerpt_color\";i:1;s:29:\"archive_cards_read_more_color\";i:1;s:27:\"archive_cards_title_spacing\";i:1;s:29:\"archive_cards_excerpt_spacing\";i:1;s:31:\"archive_cards_read_more_spacing\";i:1;}s:24:\"section_pagination_style\";a:9:{s:16:\"pagination_color\";i:1;s:22:\"pagination_hover_color\";i:1;s:23:\"pagination_active_color\";i:1;s:18:\"pagination_spacing\";i:1;s:32:\"pagination_typography_typography\";i:1;s:33:\"pagination_typography_font_family\";i:1;s:31:\"pagination_typography_font_size\";i:1;s:33:\"pagination_typography_font_weight\";i:1;s:33:\"pagination_typography_line_height\";i:1;}s:27:\"section_nothing_found_style\";a:6:{s:19:\"nothing_found_color\";i:1;s:35:\"nothing_found_typography_typography\";i:1;s:36:\"nothing_found_typography_font_family\";i:1;s:34:\"nothing_found_typography_font_size\";i:1;s:36:\"nothing_found_typography_font_weight\";i:1;s:36:\"nothing_found_typography_line_height\";i:1;}s:35:\"archive_cards_section_design_layout\";a:2:{s:23:\"archive_cards_alignment\";i:1;s:21:\"archive_cards_row_gap\";i:1;}s:13:\"section_style\";a:2:{s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:3;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:2;s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:8:{s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:25:\"elementskit-contact-form7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:4:{s:15:\"hover_animation\";i:3;s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;}s:21:\"section_style_content\";a:10:{s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;s:17:\"text_align_mobile\";i:3;}}}}}");
INSERT INTO 7ja_postmeta VALUES("5857","75","_edit_lock","1690926262:1");
INSERT INTO 7ja_postmeta VALUES("5858","75","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("5861","319","_yoast_wpseo_primary_category","1");
INSERT INTO 7ja_postmeta VALUES("5865","649","_edit_lock","1676473192:1");
INSERT INTO 7ja_postmeta VALUES("5866","752","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5867","752","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("5868","752","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5869","752","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5870","752","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5871","752","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5872","752","_elementor_data","[{\"id\":\"55742779\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4819cb1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3c0f25dc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"a7ea7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5b3ffa85\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ce2d41\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"70ef54ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2af6798b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Mail Us\",\"description_text\":\"Ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:Ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5873","752","_elementor_page_assets","a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5876","753","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5877","753","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("5878","753","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5879","753","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5880","753","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5881","753","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5882","753","_elementor_data","[{\"id\":\"55742779\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4819cb1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3c0f25dc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"a7ea7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5b3ffa85\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ce2d41\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"70ef54ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2af6798b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Mail Us\",\"description_text\":\"Ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:Ben@latitude39creative.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5883","753","_elementor_page_assets","a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5885","754","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("5886","754","_elementor_template_type","section");
INSERT INTO 7ja_postmeta VALUES("5887","754","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5888","754","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("5889","754","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("5890","754","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("5891","754","_elementor_data","[{\"id\":\"55742779\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4819cb1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3c0f25dc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"a7ea7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5b3ffa85\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ce2d41\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"70ef54ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2af6798b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"Ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:Ben@latitude39creative.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("5892","754","_elementor_page_assets","a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("5893","649","_elementor_controls_usage","a:5:{s:25:\"elementskit-contact-form7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}}}s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:2:{s:18:\"ekit_heading_title\";i:1;s:22:\"ekit_heading_title_tag\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:1;s:22:\"ekit_heading_sub_title\";i:1;s:31:\"ekit_heading_sub_title_position\";i:1;s:26:\"ekit_heading_sub_title_tag\";i:1;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:1;s:24:\"ekit_heading_extra_title\";i:1;s:16:\"desciption_width\";i:1;}s:30:\"ekit_heading_section_seperator\";a:2:{s:28:\"ekit_heading_seperator_style\";i:1;s:28:\"ekit_heading_seperator_image\";i:1;}}s:5:\"style\";a:4:{s:32:\"ekit_heading_section_title_style\";a:1:{s:24:\"ekit_heading_title_color\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:1:{s:32:\"ekit_heading_focused_title_color\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:28:\"ekit_heading_sub_title_color\";i:1;s:36:\"ekit_heading_use_sub_title_text_fill\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:1;s:28:\"ekit_heading_seperator_color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"link\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:15:\"hover_animation\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;}s:17:\"section_style_box\";a:4:{s:10:\"icon_space\";i:3;s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("6364","802","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6365","802","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("6366","802","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6367","802","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6368","802","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("6369","802","_elementor_data","[{\"id\":\"7ed92ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"32865f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5f9ec7da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Contact {{Us}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41d3975d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"340980a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1a1519cc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"4a4f2b8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7268ac59\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4d3c36b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1a914857\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1fd05600\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6370","802","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("6371","802","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6372","803","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6373","803","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("6374","803","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6375","803","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6376","803","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("6377","803","_elementor_data","[{\"id\":\"7ed92ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"32865f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5f9ec7da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Contact {{Us}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41d3975d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"340980a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1a1519cc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"4a4f2b8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7268ac59\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4d3c36b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1a914857\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1fd05600\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6378","803","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("6379","803","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6477","813","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6478","813","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("6479","813","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6480","813","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6481","813","_elementor_data","[{\"id\":\"4710bd78\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"fb84173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1cbe0216\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"45e56de5\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"475840da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"27f6ab1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6871aa89\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"1d4d61ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"45482f11\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"605453a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"193e422b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"295c2a0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6482","813","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("6483","813","_elementor_conditions","a:1:{i:0;s:28:\"include/archive/post_archive\";}");
INSERT INTO 7ja_postmeta VALUES("6484","813","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("6485","813","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("6486","813","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6488","813","_elementor_screenshot","a:2:{s:2:\"id\";i:748;s:3:\"url\";s:150:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_31_2023-02-15-04-36-21_70bdd07e.png\";}");
INSERT INTO 7ja_postmeta VALUES("6490","814","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6491","814","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("6492","814","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6493","814","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6494","814","_elementor_data","[{\"id\":\"4710bd78\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"fb84173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1cbe0216\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"45e56de5\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"475840da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"27f6ab1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6871aa89\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"1d4d61ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"45482f11\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"605453a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"193e422b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"295c2a0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6495","814","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("6496","814","_elementor_conditions","a:1:{i:0;s:28:\"include/archive/post_archive\";}");
INSERT INTO 7ja_postmeta VALUES("6497","814","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("6498","814","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("6499","814","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6501","815","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6502","815","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("6503","815","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6504","815","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6505","815","_elementor_data","[{\"id\":\"4710bd78\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"fb84173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"1cbe0216\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"45e56de5\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"475840da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"27f6ab1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6871aa89\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"1d4d61ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"45482f11\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"605453a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"193e422b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"295c2a0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6506","815","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("6507","815","_elementor_conditions","a:1:{i:0;s:28:\"include/archive/post_archive\";}");
INSERT INTO 7ja_postmeta VALUES("6508","815","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("6509","815","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("6510","815","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6598","562","ekit_post_views_count","1");
INSERT INTO 7ja_postmeta VALUES("6677","832","_wp_attached_file","2023/02/latitude61n.png");
INSERT INTO 7ja_postmeta VALUES("6678","832","_wp_attachment_metadata","a:6:{s:5:\"width\";i:240;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2023/02/latitude61n.png\";s:8:\"filesize\";i:15811;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"latitude61n-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6966;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("6742","839","_wp_attached_file","2023/02/FitCFO.png");
INSERT INTO 7ja_postmeta VALUES("6743","839","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1751;s:6:\"height\";i:803;s:4:\"file\";s:18:\"2023/02/FitCFO.png\";s:8:\"filesize\";i:1274493;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"FitCFO-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56480;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"FitCFO-1024x470.png\";s:5:\"width\";i:1024;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:417485;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"FitCFO-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35912;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"FitCFO-768x352.png\";s:5:\"width\";i:768;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263109;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"FitCFO-1536x704.png\";s:5:\"width\";i:1536;s:6:\"height\";i:704;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:792886;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("6819","847","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6820","847","_elementor_template_type","header");
INSERT INTO 7ja_postmeta VALUES("6821","847","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6822","847","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6823","847","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("6824","847","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6825","847","_elementor_data","[{\"id\":\"47ee4dd5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"475aedfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":18.42699999999999960209606797434389591217041015625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3fc07024\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"4c46566\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"0b0c49a\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"link_to\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e32b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":81.5729999999999932924765744246542453765869140625,\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1ed0afd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"normal\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\"},\"align_items\":\"center\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6826","847","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("6827","847","_elementor_conditions","a:1:{i:0;s:15:\"include/general\";}");
INSERT INTO 7ja_postmeta VALUES("6829","847","_elementor_screenshot","a:2:{s:2:\"id\";i:714;s:3:\"url\";s:151:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_601_2023-02-15-03-39-28_340d65fb.png\";}");
INSERT INTO 7ja_postmeta VALUES("6912","856","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6913","856","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("6914","856","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6915","856","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6916","856","_elementor_data","[{\"id\":\"4710bd78\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"fb84173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"79f13a30\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"45e56de5\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"475840da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"27f6ab1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6871aa89\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"1d4d61ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"45482f11\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"605453a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"193e422b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"295c2a0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6917","856","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("6918","856","_elementor_conditions","a:1:{i:0;s:28:\"include/archive/post_archive\";}");
INSERT INTO 7ja_postmeta VALUES("6919","856","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("6920","856","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("6921","856","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6922","856","_elementor_screenshot","a:2:{s:2:\"id\";i:854;s:3:\"url\";s:150:\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_31_2023-02-15-18-31-10_2a761b71.png\";}");
INSERT INTO 7ja_postmeta VALUES("6924","857","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6925","857","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("6926","857","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6927","857","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6928","857","_elementor_data","[{\"id\":\"4710bd78\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"fb84173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"79f13a30\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"45e56de5\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"475840da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"27f6ab1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6871aa89\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"1d4d61ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"45482f11\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"605453a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"193e422b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"295c2a0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6929","857","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("6930","857","_elementor_conditions","a:1:{i:0;s:28:\"include/archive/post_archive\";}");
INSERT INTO 7ja_postmeta VALUES("6931","857","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("6932","857","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("6933","857","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6935","858","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6936","858","_elementor_template_type","archive");
INSERT INTO 7ja_postmeta VALUES("6937","858","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6938","858","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6939","858","_elementor_data","[{\"id\":\"4710bd78\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"fb84173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"79f13a30\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"sticky\":\"top\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"45e56de5\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"475840da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"27f6ab1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6871aa89\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"1d4d61ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"45482f11\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"605453a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"193e422b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"295c2a0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6940","858","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("6941","858","_elementor_conditions","a:1:{i:0;s:28:\"include/archive/post_archive\";}");
INSERT INTO 7ja_postmeta VALUES("6942","858","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("6943","858","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("6944","858","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6945","31","_elementor_controls_usage","a:6:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;s:22:\"ekit_heading_title_tag\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:4:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:2;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:7:{s:32:\"ekit_heading_focused_title_color\";i:2;s:33:\"ekit_heading_use_focused_title_bg\";i:1;s:38:\"ekit_heading_focused_title_color_hover\";i:1;s:48:\"ekit_heading_focused_title_typography_typography\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:40:\"ekit_heading_title_text_decoration_color\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_color\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:7:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;s:28:\"ekit_heading_sub_title_color\";i:2;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;s:6:\"sticky\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:13:\"archive-posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:30:\"archive_classic_meta_separator\";i:1;s:33:\"archive_cards_thumbnail_size_size\";i:1;s:24:\"archive_cards_item_ratio\";i:1;s:28:\"archive_cards_read_more_text\";i:1;s:25:\"archive_cards_show_avatar\";i:1;s:28:\"archive_cards_show_read_more\";i:1;s:28:\"archive_cards_excerpt_length\";i:1;s:23:\"archive_cards_meta_data\";i:1;s:23:\"archive_classic_masonry\";i:1;}s:16:\"section_advanced\";a:1:{s:21:\"nothing_found_message\";i:1;}}s:5:\"style\";a:7:{s:33:\"archive_cards_section_design_card\";a:5:{s:27:\"archive_cards_card_bg_color\";i:1;s:32:\"archive_cards_card_border_radius\";i:1;s:31:\"archive_cards_meta_border_color\";i:1;s:26:\"archive_cards_card_padding\";i:1;s:26:\"archive_cards_hover_effect\";i:1;}s:34:\"archive_cards_section_design_image\";a:7:{s:28:\"archive_cards_badge_bg_color\";i:1;s:25:\"archive_cards_badge_color\";i:1;s:27:\"archive_cards_image_spacing\";i:1;s:28:\"archive_cards_badge_position\";i:1;s:26:\"archive_cards_badge_radius\";i:1;s:24:\"archive_cards_badge_size\";i:1;s:26:\"archive_cards_badge_margin\";i:1;}s:36:\"archive_cards_section_design_content\";a:6:{s:25:\"archive_cards_title_color\";i:1;s:27:\"archive_cards_excerpt_color\";i:1;s:29:\"archive_cards_read_more_color\";i:1;s:27:\"archive_cards_title_spacing\";i:1;s:29:\"archive_cards_excerpt_spacing\";i:1;s:31:\"archive_cards_read_more_spacing\";i:1;}s:24:\"section_pagination_style\";a:9:{s:16:\"pagination_color\";i:1;s:22:\"pagination_hover_color\";i:1;s:23:\"pagination_active_color\";i:1;s:18:\"pagination_spacing\";i:1;s:32:\"pagination_typography_typography\";i:1;s:33:\"pagination_typography_font_family\";i:1;s:31:\"pagination_typography_font_size\";i:1;s:33:\"pagination_typography_font_weight\";i:1;s:33:\"pagination_typography_line_height\";i:1;}s:27:\"section_nothing_found_style\";a:6:{s:19:\"nothing_found_color\";i:1;s:35:\"nothing_found_typography_typography\";i:1;s:36:\"nothing_found_typography_font_family\";i:1;s:34:\"nothing_found_typography_font_size\";i:1;s:36:\"nothing_found_typography_font_weight\";i:1;s:36:\"nothing_found_typography_line_height\";i:1;}s:35:\"archive_cards_section_design_layout\";a:2:{s:23:\"archive_cards_alignment\";i:1;s:21:\"archive_cards_row_gap\";i:1;}s:13:\"section_style\";a:2:{s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:2;s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:8:{s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;s:29:\"background_overlay_background\";i:2;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:25:\"elementskit-contact-form7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"link\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:15:\"hover_animation\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;}s:17:\"section_style_box\";a:4:{s:10:\"icon_space\";i:3;s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;}}}}}");
INSERT INTO 7ja_postmeta VALUES("6946","859","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("6947","859","_elementor_template_type","header");
INSERT INTO 7ja_postmeta VALUES("6948","859","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6949","859","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("6950","859","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("6951","859","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("6952","859","_elementor_data","[{\"id\":\"47ee4dd5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"475aedfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":18.42699999999999960209606797434389591217041015625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"3fc07024\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"603\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/Logo.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"4c46566\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"0b0c49a\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"link_to\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e32b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":81.5729999999999932924765744246542453765869140625,\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"content_position\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1ed0afd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"normal\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\"},\"align_items\":\"center\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("6953","859","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("6954","859","_elementor_conditions","a:1:{i:0;s:15:\"include/general\";}");
INSERT INTO 7ja_postmeta VALUES("6956","601","_elementor_controls_usage","a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:4:\"menu\";i:1;s:11:\"align_items\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:3:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("7148","863","_wp_attached_file","2023/04/Glass-wallet-logo.png");
INSERT INTO 7ja_postmeta VALUES("7149","863","_wp_attachment_metadata","a:6:{s:5:\"width\";i:600;s:6:\"height\";i:110;s:4:\"file\";s:29:\"2023/04/Glass-wallet-logo.png\";s:8:\"filesize\";i:5976;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Glass-wallet-logo-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5321;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Glass-wallet-logo-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2541;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("7150","864","_wp_attached_file","2023/04/accounting-cornerstone-1-copy.webp");
INSERT INTO 7ja_postmeta VALUES("7151","864","_wp_attachment_metadata","a:6:{s:5:\"width\";i:386;s:6:\"height\";i:194;s:4:\"file\";s:42:\"2023/04/accounting-cornerstone-1-copy.webp\";s:8:\"filesize\";i:9632;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"accounting-cornerstone-1-copy-300x151.webp\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13496;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"accounting-cornerstone-1-copy-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8844;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("7155","865","_wp_attached_file","2023/04/GW-screenshot.png");
INSERT INTO 7ja_postmeta VALUES("7156","865","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1437;s:6:\"height\";i:788;s:4:\"file\";s:25:\"2023/04/GW-screenshot.png\";s:8:\"filesize\";i:645410;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"GW-screenshot-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32797;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"GW-screenshot-1024x562.png\";s:5:\"width\";i:1024;s:6:\"height\";i:562;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:271194;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"GW-screenshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19630;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"GW-screenshot-768x421.png\";s:5:\"width\";i:768;s:6:\"height\";i:421;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:163189;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("7497","169","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("7498","169","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("7499","169","_yoast_wpseo_opengraph-title","Latitude39Creative.com");
INSERT INTO 7ja_postmeta VALUES("7500","169","_yoast_wpseo_opengraph-image","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/cropped-Untitled-design-300x300.png");
INSERT INTO 7ja_postmeta VALUES("7501","169","_yoast_wpseo_opengraph-image-id","955");
INSERT INTO 7ja_postmeta VALUES("7509","885","_wp_attached_file","2023/06/Latitude-Logo.webp");
INSERT INTO 7ja_postmeta VALUES("7510","885","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:399;s:4:\"file\";s:26:\"2023/06/Latitude-Logo.webp\";s:8:\"filesize\";i:8522;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Latitude-Logo-300x117.webp\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5038;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Latitude-Logo-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Latitude-Logo-768x299.webp\";s:5:\"width\";i:768;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13204;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("7523","169","_yoast_wpseo_metadesc","IT’S ALL ABOUT THE STRATEGY We work together to create innovative & strategic solutions, to help your company achieve your goals.");
INSERT INTO 7ja_postmeta VALUES("7527","888","_wp_attached_file","2023/06/Latitude-Logo-02-1.jpg");
INSERT INTO 7ja_postmeta VALUES("7528","888","_wp_attachment_metadata","a:6:{s:5:\"width\";i:125;s:6:\"height\";i:50;s:4:\"file\";s:30:\"2023/06/Latitude-Logo-02-1.jpg\";s:8:\"filesize\";i:6705;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:{}}}");
INSERT INTO 7ja_postmeta VALUES("7540","169","_thumbnail_id","955");
INSERT INTO 7ja_postmeta VALUES("7552","147","_thumbnail_id","355");
INSERT INTO 7ja_postmeta VALUES("7553","147","_yoast_wpseo_metadesc","We Use Creativity To Be Successful. The more creative you get with that future, the more real it will start to become to your business.");
INSERT INTO 7ja_postmeta VALUES("7554","147","_yoast_wpseo_opengraph-image","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/cropped-Untitled-design-300x300.png");
INSERT INTO 7ja_postmeta VALUES("7555","147","_yoast_wpseo_opengraph-image-id","955");
INSERT INTO 7ja_postmeta VALUES("7567","103","_thumbnail_id","378");
INSERT INTO 7ja_postmeta VALUES("7568","103","_yoast_wpseo_metadesc","Take a gander at what we are currently working on and some of our older work. Let\'s get started!!");
INSERT INTO 7ja_postmeta VALUES("7569","103","_yoast_wpseo_opengraph-image","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/apelah-1024x576.jpg");
INSERT INTO 7ja_postmeta VALUES("7570","103","_yoast_wpseo_opengraph-image-id","378");
INSERT INTO 7ja_postmeta VALUES("7663","131","_thumbnail_id","372");
INSERT INTO 7ja_postmeta VALUES("7664","131","_yoast_wpseo_metadesc","Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy. IT’S ALL ABOUT THE STRATEGY");
INSERT INTO 7ja_postmeta VALUES("7665","131","_yoast_wpseo_opengraph-image","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Bg-1-1024x683.jpg");
INSERT INTO 7ja_postmeta VALUES("7666","131","_yoast_wpseo_opengraph-image-id","380");
INSERT INTO 7ja_postmeta VALUES("7667","131","_yoast_wpseo_opengraph-title","%%title%%");
INSERT INTO 7ja_postmeta VALUES("7668","131","_yoast_wpseo_opengraph-description","IT’S ALL ABOUT THE STRATEGY");
INSERT INTO 7ja_postmeta VALUES("7765","906","_wp_attached_file","2023/06/Elementor-Logo-Full-Red.png");
INSERT INTO 7ja_postmeta VALUES("7766","906","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1601;s:6:\"height\";i:320;s:4:\"file\";s:35:\"2023/06/Elementor-Logo-Full-Red.png\";s:8:\"filesize\";i:8058;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Elementor-Logo-Full-Red-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6281;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Elementor-Logo-Full-Red-1024x205.png\";s:5:\"width\";i:1024;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Elementor-Logo-Full-Red-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3187;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Elementor-Logo-Full-Red-768x154.png\";s:5:\"width\";i:768;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17054;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"Elementor-Logo-Full-Red-1536x307.png\";s:5:\"width\";i:1536;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35651;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("7895","75","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("7896","75","_yoast_wpseo_primary_category","14");
INSERT INTO 7ja_postmeta VALUES("7897","75","_yoast_wpseo_content_score","60");
INSERT INTO 7ja_postmeta VALUES("7898","75","_yoast_wpseo_estimated-reading-time-minutes","3");
INSERT INTO 7ja_postmeta VALUES("7899","75","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("7902","75","_wp_old_slug","what-will-be-the-future-post-facebook");
INSERT INTO 7ja_postmeta VALUES("7913","75","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("7925","915","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("7926","915","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("7927","915","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("7928","915","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("7929","915","_elementor_data","[{\"id\":\"68692224\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4555c6f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"62548cfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:paragraph --><\\/p>\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl. Mauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Nulla euismod a mi eu elementum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet velit gravida tempor et quis mauris. Vestibulum fermentum est nulla, a accumsan libero ultrices nec.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Etiam erat quam, pellentesque in maximus vitae, sollicitudin sed dui. Fusce blandit turpis nec aliquam pharetra. Suspendisse imperdiet molestie imperdiet. Pellentesque imperdiet magna tincidunt, ultricies tellus at, aliquet sapien.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p><strong>Class aptent taciti socios<br><\\/strong>Lkad litora torquent per conubia nostra, per inceptos himenaeos. Praesent ut libero a ipsum aliquam accumsan. Maecenas ut arcu in justo euismod auctor. Donec facilisis efficitur ante a suscipit. Mauris maximus eu odio ac euismod. Maecenas faucibus turpis sed posuere volutpat. Sed tincidunt luctus massa ac aliquam. Integer tincidunt purus et diam dapibus, a rhoncus magna congue. Ut ut turpis suscipit massa mollis gravida. Proin ut dui in libero aliquet semper.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p><strong>Morbi a felis sapien<\\/strong><br>bibendum hendrerit elit, vitae posuere sem pharetra nec. Morbi suscipit suscipit luctus. Morbi posuere augue eu tristique mollis. Suspendisse fringilla venenatis placerat. Nunc id sapien pretium urna bibendum consectetur. Quisque blandit metus arcu, id ornare magna molestie nec. Proin malesuada a lacus nec mollis. Aliquam pellentesque purus ac nibh pharetra gravida.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Vestibulum quis elit rhoncus, ultricies dolor at, gravida orci. Curabitur ut luctus felis. Sed suscipit ut velit sit amet semper. Donec lorem sem, feugiat eget laoreet in, semper non elit. Ut accumsan lacus eu tellus venenatis tincidunt. Suspendisse at mauris.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Nulla vel ante eu leo rhoncus condimentum vitae et elit. Etiam vitae elementum orci. Aliquam quam turpis, malesuada non ultrices ac, mollis ut dui. Donec eu nisl ut sapien feugiat accumsan ut eget ligula. Phasellus pharetra gravida est id pellentesque. Aliquam erat volutpat. Phasellus venenatis ipsum ac metus sagittis bibendum.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>In sed rutrum magna. Nullam euismod metus ac sagittis viverra. Vivamus posuere vehicula risus a eleifend. Sed vel metus lacus. In hac habitasse platea dictumst. Morbi lacinia fermentum mi eget auctor. Aenean vehicula odio justo, ut gravida ex porttitor eu. Fusce sed blandit mauris, in tempus nisl. Sed rutrum elit non ante rhoncus, vel luctus neque pretium.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p><strong>Cras nec magna nec neque pulvinar commodo.<\\/strong><br>Duis libero mauris, elementum et dui vitae, malesuada egestas nisi. Maecenas dignissim consequat tellus quis dignissim. Ut ac convallis tellus, semper sodales erat. Nam ac nunc blandit, volutpat nunc a, accumsan velit. Praesent tincidunt purus iaculis diam posuere, at condimentum urna imperdiet. Nam sit amet pulvinar massa, id hendrerit ante. Vestibulum tellus tellus, eleifend nec placerat tempus, tincidunt at orci. Morbi mollis, justo aliquam venenatis euismod, diam ante sollicitudin lacus, ac fermentum sapien velit quis magna. Integer rutrum lacinia ullamcorper. Vivamus sit amet bibendum augue, non luctus diam. Cras nisi est, ultricies eget ipsum ut, viverra facilisis tortor.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\",\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("7930","915","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("7931","915","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("7933","915","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("7934","75","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("7935","916","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("7936","916","_elementor_version","3.8.0");
INSERT INTO 7ja_postmeta VALUES("7937","916","_elementor_pro_version","3.7.7");
INSERT INTO 7ja_postmeta VALUES("7938","916","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("7939","916","_elementor_data","[{\"id\":\"68692224\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4555c6f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"62548cfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:paragraph --><\\/p>\\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.<\\/p>\\n<p>1.\\u00a0 Recognition and Recall:<\\/p>\\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.<\\/p>\\n<p>2. Building Trust and Credibility:<\\/p>\\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.<\\/p>\\n<p>3.\\u00a0 Customer Loyalty:<\\/p>\\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.<\\/p>\\n<div class=\\\"flex-1 overflow-hidden\\\">\\n<div class=\\\"react-scroll-to-bottom--css-bmgmx-79elbk h-full dark:bg-gray-800\\\">\\n<div class=\\\"react-scroll-to-bottom--css-bmgmx-1n7m0yu\\\">\\n<div class=\\\"flex flex-col text-sm dark:bg-gray-800\\\">\\n<div class=\\\"group w-full text-gray-800 dark:text-gray-100 border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\">\\n<div class=\\\"flex p-4 gap-4 text-base md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl md:py-6 lg:px-0 m-auto\\\">\\n<div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\">\\n<div class=\\\"flex flex-grow flex-col gap-3\\\">\\n<div class=\\\"min-h-[20px] flex items-start overflow-x-auto whitespace-pre-wrap break-words\\\">\\n<div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\">\\n<p>4. <strong>Competitive Advantage:<\\/strong><\\/p>\\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.<\\/p>\\n<p>5.\\u00a0 <strong>Employee Morale and Pride:<\\/strong><\\/p>\\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.<\\/p>\\n<p>6. <strong>Brand Extension and Diversification:<\\/strong><\\/p>\\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.<\\/p>\\n<p>7. <strong>Price Premium:<\\/strong><\\/p>\\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.<\\/p>\\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<p><!-- \\/wp:paragraph --><\\/p>\",\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("7940","916","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("7941","916","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("7943","916","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("7944","916","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("7945","75","_elementor_controls_usage","a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("7946","917","_wp_attached_file","2022/11/kristian-egelund-wwqRpSNBPq4-unsplash.jpg");
INSERT INTO 7ja_postmeta VALUES("7949","918","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("7950","918","_elementor_version","3.15.0");
INSERT INTO 7ja_postmeta VALUES("7951","918","_elementor_pro_version","3.15.0");
INSERT INTO 7ja_postmeta VALUES("7952","918","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("7953","918","_elementor_data","[{\"id\":\"68692224\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4555c6f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"62548cfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:paragraph --><\\/p>\\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.<\\/p>\\n<p>1.\\u00a0 Recognition and Recall:<\\/p>\\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.<\\/p>\\n<p>2. Building Trust and Credibility:<\\/p>\\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.<\\/p>\\n<p>3.\\u00a0 Customer Loyalty:<\\/p>\\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.<\\/p>\\n<div class=\\\"flex-1 overflow-hidden\\\">\\n<div class=\\\"react-scroll-to-bottom--css-bmgmx-79elbk h-full dark:bg-gray-800\\\">\\n<div class=\\\"react-scroll-to-bottom--css-bmgmx-1n7m0yu\\\">\\n<div class=\\\"flex flex-col text-sm dark:bg-gray-800\\\">\\n<div class=\\\"group w-full text-gray-800 dark:text-gray-100 border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\">\\n<div class=\\\"flex p-4 gap-4 text-base md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl md:py-6 lg:px-0 m-auto\\\">\\n<div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\">\\n<div class=\\\"flex flex-grow flex-col gap-3\\\">\\n<div class=\\\"min-h-[20px] flex items-start overflow-x-auto whitespace-pre-wrap break-words\\\">\\n<div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\">\\n<p>4. <strong>Competitive Advantage:<\\/strong><\\/p>\\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.<\\/p>\\n<p>5.\\u00a0 <strong>Employee Morale and Pride:<\\/strong><\\/p>\\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.<\\/p>\\n<p>6. <strong>Brand Extension and Diversification:<\\/strong><\\/p>\\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.<\\/p>\\n<p>7. <strong>Price Premium:<\\/strong><\\/p>\\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.<\\/p>\\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<p><!-- \\/wp:paragraph --><\\/p>\",\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("7954","918","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("7955","918","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("7956","918","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("7957","918","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("7958","918","_elementor_controls_usage","a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("7960","75","_thumbnail_id","917");
INSERT INTO 7ja_postmeta VALUES("7965","75","_wp_old_date","2022-11-12");
INSERT INTO 7ja_postmeta VALUES("7980","920","_elementor_template_type","wp-post");
INSERT INTO 7ja_postmeta VALUES("7981","920","_elementor_version","3.15.0");
INSERT INTO 7ja_postmeta VALUES("7982","920","_elementor_pro_version","3.15.0");
INSERT INTO 7ja_postmeta VALUES("7983","920","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("7984","920","_elementor_data","[{\"id\":\"68692224\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4555c6f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"62548cfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:paragraph --><\\/p>\\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.<\\/p>\\n<p>1.\\u00a0 Recognition and Recall:<\\/p>\\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.<\\/p>\\n<p>2. Building Trust and Credibility:<\\/p>\\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.<\\/p>\\n<p>3.\\u00a0 Customer Loyalty:<\\/p>\\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.<\\/p>\\n<div class=\\\"flex-1 overflow-hidden\\\">\\n<div class=\\\"react-scroll-to-bottom--css-bmgmx-79elbk h-full dark:bg-gray-800\\\">\\n<div class=\\\"react-scroll-to-bottom--css-bmgmx-1n7m0yu\\\">\\n<div class=\\\"flex flex-col text-sm dark:bg-gray-800\\\">\\n<div class=\\\"group w-full text-gray-800 dark:text-gray-100 border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\">\\n<div class=\\\"flex p-4 gap-4 text-base md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl md:py-6 lg:px-0 m-auto\\\">\\n<div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\">\\n<div class=\\\"flex flex-grow flex-col gap-3\\\">\\n<div class=\\\"min-h-[20px] flex items-start overflow-x-auto whitespace-pre-wrap break-words\\\">\\n<div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\">\\n<p>4. <strong>Competitive Advantage:<\\/strong><\\/p>\\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.<\\/p>\\n<p>5.\\u00a0 <strong>Employee Morale and Pride:<\\/strong><\\/p>\\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.<\\/p>\\n<p>6. <strong>Brand Extension and Diversification:<\\/strong><\\/p>\\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.<\\/p>\\n<p>7. <strong>Price Premium:<\\/strong><\\/p>\\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.<\\/p>\\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<p><!-- \\/wp:paragraph --><\\/p>\",\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("7985","920","_elementor_page_assets","a:0:{}");
INSERT INTO 7ja_postmeta VALUES("7986","920","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("7987","920","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("7988","920","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("7989","920","_elementor_controls_usage","a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("7991","920","_thumbnail_id","917");
INSERT INTO 7ja_postmeta VALUES("7992","75","_yoast_wpseo_metadesc","In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company’s disposal for achieving this differentiation is its brand.");
INSERT INTO 7ja_postmeta VALUES("7993","921","_wp_attached_file","2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png");
INSERT INTO 7ja_postmeta VALUES("7994","921","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:923;s:4:\"file\";s:56:\"2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\";s:8:\"filesize\";i:1034070;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Screenshot-2023-08-01-3.49.41-PM-Display-2-1-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42072;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Screenshot-2023-08-01-3.49.41-PM-Display-2-1-1024x492.png\";s:5:\"width\";i:1024;s:6:\"height\";i:492;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:429890;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Screenshot-2023-08-01-3.49.41-PM-Display-2-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:27854;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"Screenshot-2023-08-01-3.49.41-PM-Display-2-1-768x369.png\";s:5:\"width\";i:768;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:250426;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"Screenshot-2023-08-01-3.49.41-PM-Display-2-1-1536x738.png\";s:5:\"width\";i:1536;s:6:\"height\";i:738;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:880095;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8030","925","_wp_attached_file","2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png");
INSERT INTO 7ja_postmeta VALUES("8031","925","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1916;s:6:\"height\";i:955;s:4:\"file\";s:54:\"2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\";s:8:\"filesize\";i:790739;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Screenshot-2023-08-01-3.55.16-PM-Display-2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56773;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-08-01-3.55.16-PM-Display-2-1024x510.png\";s:5:\"width\";i:1024;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:594731;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Screenshot-2023-08-01-3.55.16-PM-Display-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:32493;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Screenshot-2023-08-01-3.55.16-PM-Display-2-768x383.png\";s:5:\"width\";i:768;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:339836;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-08-01-3.55.16-PM-Display-2-1536x766.png\";s:5:\"width\";i:1536;s:6:\"height\";i:766;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1318962;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8088","349","_hash","3b6b1ab0dade9455b991253716a3f00f676f543d");
INSERT INTO 7ja_postmeta VALUES("8127","169","_yoast_wpseo_twitter-image","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/Social-image.png");
INSERT INTO 7ja_postmeta VALUES("8128","169","_yoast_wpseo_twitter-image-id","949");
INSERT INTO 7ja_postmeta VALUES("8160","169","_yoast_wpseo_focuskw","Professional Website Design");
INSERT INTO 7ja_postmeta VALUES("8161","169","_yoast_wpseo_linkdex","55");
INSERT INTO 7ja_postmeta VALUES("8348","169","footnotes","");
INSERT INTO 7ja_postmeta VALUES("8361","947","_wp_attached_file","2023/09/Screenshot-2023-09-11-10.34.18-AM-Display-2.png");
INSERT INTO 7ja_postmeta VALUES("8362","947","_wp_attachment_metadata","a:6:{s:5:\"width\";i:500;s:6:\"height\";i:226;s:4:\"file\";s:55:\"2023/09/Screenshot-2023-09-11-10.34.18-AM-Display-2.png\";s:8:\"filesize\";i:56591;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-09-11-10.34.18-AM-Display-2-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23214;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Screenshot-2023-09-11-10.34.18-AM-Display-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:3677;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8455","949","_wp_attached_file","2023/09/Social-image.png");
INSERT INTO 7ja_postmeta VALUES("8456","949","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2023/09/Social-image.png\";s:8:\"filesize\";i:11839;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Social-image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6456;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8462","952","_wp_attached_file","2023/09/Favicon-512.png");
INSERT INTO 7ja_postmeta VALUES("8463","952","_wp_attachment_metadata","a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:23:\"2023/09/Favicon-512.png\";s:8:\"filesize\";i:37992;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Favicon-512-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14851;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Favicon-512-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5435;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8464","953","_wp_attached_file","2023/09/cropped-Favicon-512.png");
INSERT INTO 7ja_postmeta VALUES("8465","953","_wp_attachment_context","site-icon");
INSERT INTO 7ja_postmeta VALUES("8466","953","_wp_attachment_metadata","a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:31:\"2023/09/cropped-Favicon-512.png\";s:8:\"filesize\";i:36691;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"cropped-Favicon-512-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14851;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"cropped-Favicon-512-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5435;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:31:\"cropped-Favicon-512-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12470;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:31:\"cropped-Favicon-512-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7624;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:31:\"cropped-Favicon-512-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6837;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:29:\"cropped-Favicon-512-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:832;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8467","954","_wp_attached_file","2023/09/Untitled-design.png");
INSERT INTO 7ja_postmeta VALUES("8468","954","_wp_attachment_metadata","a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2023/09/Untitled-design.png\";s:8:\"filesize\";i:54995;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Untitled-design-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Untitled-design-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6897;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8469","955","_wp_attached_file","2023/09/cropped-Untitled-design.png");
INSERT INTO 7ja_postmeta VALUES("8470","955","_wp_attachment_context","site-icon");
INSERT INTO 7ja_postmeta VALUES("8471","955","_wp_attachment_metadata","a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:35:\"2023/09/cropped-Untitled-design.png\";s:8:\"filesize\";i:54126;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"cropped-Untitled-design-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"cropped-Untitled-design-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6897;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:35:\"cropped-Untitled-design-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17402;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:35:\"cropped-Untitled-design-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10150;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:35:\"cropped-Untitled-design-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8988;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:33:\"cropped-Untitled-design-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:777;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8474","958","_edit_lock","1695074042:1");
INSERT INTO 7ja_postmeta VALUES("8477","960","_wp_attached_file","2023/09/Untitled-design-1.png");
INSERT INTO 7ja_postmeta VALUES("8478","960","_wp_attachment_metadata","a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2023/09/Untitled-design-1.png\";s:8:\"filesize\";i:71293;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Untitled-design-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:17167;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-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:6237;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8479","961","_wp_attached_file","2023/09/cropped-Untitled-design-1.png");
INSERT INTO 7ja_postmeta VALUES("8480","961","_wp_attachment_context","site-icon");
INSERT INTO 7ja_postmeta VALUES("8481","961","_wp_attachment_metadata","a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:37:\"2023/09/cropped-Untitled-design-1.png\";s:8:\"filesize\";i:40323;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"cropped-Untitled-design-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:18174;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"cropped-Untitled-design-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:6356;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:37:\"cropped-Untitled-design-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:15060;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:37:\"cropped-Untitled-design-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:8921;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:37:\"cropped-Untitled-design-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:7801;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:35:\"cropped-Untitled-design-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:693;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("8482","955","_oembed_6dc5f9b762e74d7b28c08e198ca286b5","{{unknown}}");
INSERT INTO 7ja_postmeta VALUES("8504","169","_yoast_wpseo_opengraph-description","Your creative design agency - It\'s all about the strategy.");
INSERT INTO 7ja_postmeta VALUES("8505","169","_yoast_wpseo_twitter-title","Latitude39Creative.com");
INSERT INTO 7ja_postmeta VALUES("8506","169","_yoast_wpseo_twitter-description","Your creative design agency - It\'s all about the strategy.");
INSERT INTO 7ja_postmeta VALUES("8633","961","_oembed_7056549c337d13d9116699c7d871040a","{{unknown}}");
INSERT INTO 7ja_postmeta VALUES("8634","953","_oembed_737d782490b1a1672e627685969e23de","{{unknown}}");
INSERT INTO 7ja_postmeta VALUES("8660","147","_yoast_wpseo_focuskw","Our Expert Web Designers");
INSERT INTO 7ja_postmeta VALUES("8661","147","_yoast_wpseo_linkdex","35");
INSERT INTO 7ja_postmeta VALUES("8662","147","_yoast_wpseo_opengraph-title","Latitude 39 Creative About");
INSERT INTO 7ja_postmeta VALUES("8663","147","_yoast_wpseo_opengraph-description","We Use Creativity To Be Successful. The more creative you get with that future, the more real it will start to become to your business.");
INSERT INTO 7ja_postmeta VALUES("8664","147","_yoast_wpseo_twitter-title","Latitude 39 Creative About");
INSERT INTO 7ja_postmeta VALUES("8665","147","_yoast_wpseo_twitter-description","We Use Creativity To Be Successful. The more creative you get with that future, the more real it will start to become to your business.");
INSERT INTO 7ja_postmeta VALUES("8666","147","_yoast_wpseo_twitter-image","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/Untitled-design.png");
INSERT INTO 7ja_postmeta VALUES("8667","147","_yoast_wpseo_twitter-image-id","954");
INSERT INTO 7ja_postmeta VALUES("8749","970","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("8750","970","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("8751","970","_elementor_version","3.17.3");
INSERT INTO 7ja_postmeta VALUES("8752","970","_elementor_pro_version","3.17.1");
INSERT INTO 7ja_postmeta VALUES("8753","970","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("8754","970","_elementor_data","[{\"id\":\"458b1c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_xpos\":{\"unit\":\"px\",\"size\":-33,\"sizes\":[]},\"background_size\":\"cover\",\"background_position_tablet\":\"center left\",\"background_position_mobile\":\"center left\",\"background_size_tablet\":\"auto\",\"background_overlay_color\":\"#000000D6\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2aec8865\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e48cf72\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{About}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":178,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-150,\"to\":150}},\"premium_fe_Ytranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":0,\"to\":0}},\"premium_fe_rotate_switcher\":\"yes\",\"premium_fe_Xrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"premium_fe_Yrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-46,\"to\":47}},\"premium_fe_Zrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"47acb39d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"603aa15c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_color\":\"#000000\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_image_tablet\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":\"380\",\"size\":\"\"},\"background_position_tablet\":\"center right\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4345daf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2d2cac35\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"Meet Our Expert Web Designers\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=text\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff36f30\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#000000\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f187dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d7eb57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"456fa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"67cbe31f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24ce1aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68c16b2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb41c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cb7eae4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a42b2bc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"27e6b700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"65f66110\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c8d490\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1f3b4bc8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e4f461e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4d655c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aea7b2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand & Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e64f885\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ef13c9f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"566b1ce4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"150b4d80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"525c7ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54a2b75a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd5aec1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"11c3c600\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5><p>\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f3d513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_b\":\"#000000\",\"content_width\":{\"unit\":\"px\",\"size\":619,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1043fc73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4063f0ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27efc588\",\"elType\":\"widget\",\"settings\":{\"ending_number\":100,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Projects\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":395,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"24f22c30\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"63c1761c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60350a75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Customers\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":396,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"83f4d1d\",\"elType\":\"section\",\"settings\":{\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a11e260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"18227b6\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Some of Our {{Clients}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5aa00015\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"50\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#26B6A333\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"74f3e819\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"44b9edb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":337,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/Markpianoman.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"712a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"33c941c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":335,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/blueprintfinlogo.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2b58ba8\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"25dd3316\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":333,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/BFD-main-logo.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11db9e31\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6d689456\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":336,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/PivotAll_Web-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"34c0de1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7fdaa2a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":334,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/GW-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_background_background\":\"classic\",\"_background_color\":\"#26B6A347\",\"__globals__\":{\"_background_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e056507\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e2bf99c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"align\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"9c1a377\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s{{Talk}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"220d247e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"202\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("8755","970","_elementor_page_assets","a:2:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("8756","970","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("8757","970","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("8758","970","_thumbnail_id","355");
INSERT INTO 7ja_postmeta VALUES("8760","971","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("8761","971","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("8762","971","_elementor_version","3.17.3");
INSERT INTO 7ja_postmeta VALUES("8763","971","_elementor_pro_version","3.17.1");
INSERT INTO 7ja_postmeta VALUES("8764","971","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("8765","971","_elementor_data","[{\"id\":\"458b1c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_xpos\":{\"unit\":\"px\",\"size\":-33,\"sizes\":[]},\"background_size\":\"cover\",\"background_position_tablet\":\"center left\",\"background_position_mobile\":\"center left\",\"background_size_tablet\":\"auto\",\"background_overlay_color\":\"#000000D6\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2aec8865\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e48cf72\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{About}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":178,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-150,\"to\":150}},\"premium_fe_Ytranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":0,\"to\":0}},\"premium_fe_rotate_switcher\":\"yes\",\"premium_fe_Xrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"premium_fe_Yrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-46,\"to\":47}},\"premium_fe_Zrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"47acb39d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"603aa15c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_color\":\"#000000\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_image_tablet\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":\"380\",\"size\":\"\"},\"background_position_tablet\":\"center right\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4345daf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2d2cac35\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"Meet Our Expert Web Designers\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=text\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff36f30\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#000000\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f187dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d7eb57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"456fa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"67cbe31f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24ce1aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68c16b2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb41c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cb7eae4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a42b2bc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"27e6b700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"65f66110\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c8d490\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1f3b4bc8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e4f461e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4d655c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aea7b2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand & Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e64f885\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ef13c9f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"566b1ce4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"150b4d80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"525c7ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54a2b75a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd5aec1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"11c3c600\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5><p>\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e056507\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e2bf99c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"align\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"9c1a377\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s{{Talk}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"220d247e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"202\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("8766","971","_elementor_page_assets","a:2:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("8767","971","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("8768","971","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("8769","971","_thumbnail_id","355");
INSERT INTO 7ja_postmeta VALUES("8773","972","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("8774","972","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("8775","972","_elementor_version","3.17.3");
INSERT INTO 7ja_postmeta VALUES("8776","972","_elementor_pro_version","3.17.1");
INSERT INTO 7ja_postmeta VALUES("8777","972","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("8778","972","_elementor_data","[{\"id\":\"458b1c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_xpos\":{\"unit\":\"px\",\"size\":-33,\"sizes\":[]},\"background_size\":\"cover\",\"background_position_tablet\":\"center left\",\"background_position_mobile\":\"center left\",\"background_size_tablet\":\"auto\",\"background_overlay_color\":\"#000000D6\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2aec8865\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e48cf72\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{About}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":178,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-150,\"to\":150}},\"premium_fe_Ytranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":0,\"to\":0}},\"premium_fe_rotate_switcher\":\"yes\",\"premium_fe_Xrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"premium_fe_Yrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-46,\"to\":47}},\"premium_fe_Zrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"47acb39d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"603aa15c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_color\":\"#000000\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_image_tablet\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":\"380\",\"size\":\"\"},\"background_position_tablet\":\"center right\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4345daf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2d2cac35\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"Meet Our Expert Web Designers\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=text\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff36f30\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#000000\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f187dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d7eb57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"456fa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"67cbe31f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24ce1aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68c16b2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb41c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cb7eae4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a42b2bc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"27e6b700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"65f66110\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c8d490\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1f3b4bc8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e4f461e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4d655c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aea7b2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand & Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e64f885\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ef13c9f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"566b1ce4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"150b4d80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"525c7ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54a2b75a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd5aec1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"11c3c600\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5><p>\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e056507\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e2bf99c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"align\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"9c1a377\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s{{Talk}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"220d247e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"202\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("8779","972","_elementor_page_assets","a:2:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("8780","972","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("8781","972","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("8782","972","_thumbnail_id","355");
INSERT INTO 7ja_postmeta VALUES("8784","973","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("8785","973","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("8786","973","_elementor_version","3.17.3");
INSERT INTO 7ja_postmeta VALUES("8787","973","_elementor_pro_version","3.17.1");
INSERT INTO 7ja_postmeta VALUES("8788","973","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("8789","973","_elementor_data","[{\"id\":\"458b1c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_xpos\":{\"unit\":\"px\",\"size\":-33,\"sizes\":[]},\"background_size\":\"cover\",\"background_position_tablet\":\"center left\",\"background_position_mobile\":\"center left\",\"background_size_tablet\":\"auto\",\"background_overlay_color\":\"#000000D6\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2aec8865\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e48cf72\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{About}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":178,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-150,\"to\":150}},\"premium_fe_Ytranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":0,\"to\":0}},\"premium_fe_rotate_switcher\":\"yes\",\"premium_fe_Xrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"premium_fe_Yrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-46,\"to\":47}},\"premium_fe_Zrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"47acb39d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"603aa15c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_color\":\"#000000\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_image_tablet\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":\"380\",\"size\":\"\"},\"background_position_tablet\":\"center right\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4345daf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2d2cac35\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"Meet Our Expert Web Designers\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=text\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff36f30\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#000000\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f187dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d7eb57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"456fa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"67cbe31f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24ce1aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68c16b2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb41c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cb7eae4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a42b2bc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"27e6b700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"65f66110\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c8d490\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1f3b4bc8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e4f461e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4d655c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aea7b2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand & Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e64f885\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ef13c9f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"566b1ce4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"150b4d80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"525c7ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54a2b75a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd5aec1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"11c3c600\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5><p>\\u00a0<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e056507\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e2bf99c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"align\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"9c1a377\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s{{Talk}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"220d247e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"202\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("8790","973","_elementor_page_assets","a:2:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("8791","973","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("8792","973","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("8793","973","_thumbnail_id","355");
INSERT INTO 7ja_postmeta VALUES("8795","974","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("8796","974","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("8797","974","_elementor_version","3.17.3");
INSERT INTO 7ja_postmeta VALUES("8798","974","_elementor_pro_version","3.17.1");
INSERT INTO 7ja_postmeta VALUES("8799","974","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("8800","974","_elementor_data","[{\"id\":\"458b1c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_xpos\":{\"unit\":\"px\",\"size\":-33,\"sizes\":[]},\"background_size\":\"cover\",\"background_position_tablet\":\"center left\",\"background_position_mobile\":\"center left\",\"background_size_tablet\":\"auto\",\"background_overlay_color\":\"#000000D6\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2aec8865\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e48cf72\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{About}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":178,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-150,\"to\":150}},\"premium_fe_Ytranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":0,\"to\":0}},\"premium_fe_rotate_switcher\":\"yes\",\"premium_fe_Xrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"premium_fe_Yrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-46,\"to\":47}},\"premium_fe_Zrotate\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":{\"from\":-47,\"to\":47}},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"47acb39d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"566b1ce4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"150b4d80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"525c7ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54a2b75a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd5aec1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"11c3c600\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get, the more real your business will become.<\\/h5><h5>This will help us create a step-by-step plan that will make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"603aa15c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"background_overlay_color\":\"#000000\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_image_tablet\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":\"380\",\"size\":\"\"},\"background_position_tablet\":\"center right\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4345daf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2d2cac35\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"Meet Our Expert Web Designers\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=text\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff36f30\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#000000\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f187dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d7eb57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"456fa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"67cbe31f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24ce1aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68c16b2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb41c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cb7eae4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a42b2bc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"27e6b700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"65f66110\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c8d490\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1f3b4bc8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e4f461e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4d655c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aea7b2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand & Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e64f885\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ef13c9f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e056507\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e2bf99c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"align\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"9c1a377\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s{{Talk}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"220d247e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"202\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("8801","974","_elementor_page_assets","a:2:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("8802","974","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("8803","974","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("8804","974","_thumbnail_id","355");
INSERT INTO 7ja_postmeta VALUES("8806","147","_elementor_controls_usage","a:8:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:4;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;s:22:\"ekit_heading_title_tag\";i:3;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:4;s:22:\"ekit_heading_sub_title\";i:4;s:31:\"ekit_heading_sub_title_position\";i:3;s:26:\"ekit_heading_sub_title_tag\";i:4;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:4;s:24:\"ekit_heading_extra_title\";i:4;s:16:\"desciption_width\";i:4;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:4;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:4;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:4;s:40:\"ekit_heading_title_typography_typography\";i:4;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:4;s:41:\"ekit_heading_title_typography_font_weight\";i:4;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:7:{s:32:\"ekit_heading_focused_title_color\";i:3;s:33:\"ekit_heading_use_focused_title_bg\";i:1;s:38:\"ekit_heading_focused_title_color_hover\";i:1;s:48:\"ekit_heading_focused_title_typography_typography\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:40:\"ekit_heading_title_text_decoration_color\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_color\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:8:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:4;s:28:\"ekit_heading_sub_title_color\";i:1;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;s:28:\"ekit_heading_sub_title_margn\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:4;s:28:\"ekit_heading_seperator_color\";i:3;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:4;s:18:\"animation_duration\";i:4;s:6:\"sticky\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:18:\"section_premium_fe\";a:6:{s:21:\"premium_fe_Xtranslate\";i:1;s:21:\"premium_fe_Ytranslate\";i:1;s:26:\"premium_fe_rotate_switcher\";i:1;s:18:\"premium_fe_Xrotate\";i:1;s:18:\"premium_fe_Yrotate\";i:1;s:18:\"premium_fe_Zrotate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:12;s:21:\"space_between_widgets\";i:3;s:16:\"content_position\";i:6;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:10;s:6:\"margin\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:18:\"animation_duration\";i:4;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:23:\"background_color_b_stop\";i:2;s:24:\"background_gradient_type\";i:2;}s:26:\"section_background_overlay\";a:14:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:2;s:23:\"background_overlay_size\";i:2;s:26:\"background_overlay_opacity\";i:2;s:22:\"css_filters_brightness\";i:2;s:20:\"css_filters_saturate\";i:2;s:35:\"background_overlay_hover_background\";i:2;s:30:\"background_overlay_hover_image\";i:2;s:33:\"background_overlay_hover_position\";i:2;s:29:\"background_overlay_hover_size\";i:2;s:32:\"background_overlay_hover_opacity\";i:2;s:28:\"css_filters_hover_brightness\";i:2;s:35:\"background_overlay_hover_transition\";i:2;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:7;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:15:\"background_ypos\";i:1;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:1;s:19:\"background_bg_width\";i:1;s:15:\"background_xpos\";i:1;s:15:\"background_size\";i:4;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:4;s:26:\"background_overlay_opacity\";i:2;s:24:\"background_overlay_color\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:5;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:7:{s:5:\"width\";i:3;s:22:\"css_filters_css_filter\";i:3;s:22:\"css_filters_brightness\";i:3;s:20:\"css_filters_saturate\";i:2;s:28:\"css_filters_hover_css_filter\";i:2;s:28:\"css_filters_hover_brightness\";i:2;s:27:\"background_hover_transition\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:16:\"_section_masking\";a:5:{s:12:\"_mask_switch\";i:2;s:11:\"_mask_shape\";i:2;s:10:\"_mask_size\";i:2;s:14:\"_mask_position\";i:1;s:16:\"_mask_position_x\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:11:\"header_size\";i:4;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:4;s:22:\"typography_line_height\";i:4;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:4;}}}}s:25:\"elementskit-contact-form7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("8820","315","_thumbnail_id","954");
INSERT INTO 7ja_postmeta VALUES("8821","976","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("8822","976","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("8823","976","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("8824","976","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("8825","976","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("8826","976","_elementor_data","[{\"id\":\"53429895\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":\"\"},\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_title\":\"Archive Posts\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"id\":380,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_attachment\":\"fixed\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"25d30b5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"4c37edfd\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Latest {{Blog}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"658\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"42f2cabb\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_thumbnail_size_size\":\"full\",\"archive_cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.6\"},\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More\",\"archive_cards_show_avatar\":\"\",\"archive_cards_card_bg_color\":\"#FFFFFF\",\"archive_cards_badge_bg_color\":\"#4632DA\",\"archive_cards_badge_color\":\"#FFFFFF\",\"archive_cards_title_color\":\"#4632DA\",\"archive_cards_excerpt_color\":\"#353535\",\"archive_cards_read_more_color\":\"#00ce1b\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#3D4459\",\"pagination_hover_color\":\"#4632da\",\"pagination_active_color\":\"#4632da\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"nothing_found_color\":\"#353535\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"archive_cards_show_read_more\":\"\",\"archive_cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_meta_border_color\":\"#F2F2F2\",\"archive_cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_badge_position\":\"left\",\"archive_cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"archive_cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"archive_cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"archive_cards_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"archive_cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"nothing_found_typography_typography\":\"custom\",\"nothing_found_typography_font_family\":\"Montserrat\",\"nothing_found_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"archive_cards_alignment\":\"center\",\"archive_cards_excerpt_length\":\"\",\"archive_cards_meta_data\":[\"author\",\"date\"],\"archive_cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"archive_cards_card_padding\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"pagination_spacing\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"pagination_typography_typography\":\"custom\",\"pagination_typography_font_family\":\"Montserrat\",\"pagination_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"pagination_typography_font_weight\":\"300\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"archive_cards_hover_effect\":\"none\",\"pagination_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"nothing_found_typography_font_weight\":\"300\",\"nothing_found_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"__globals__\":{\"archive_cards_card_bg_color\":\"globals\\/colors?id=b500f0a\",\"archive_cards_meta_border_color\":\"globals\\/colors?id=0d046a4\",\"archive_cards_badge_bg_color\":\"globals\\/colors?id=primary\",\"archive_cards_badge_color\":\"globals\\/colors?id=f898f31\",\"archive_cards_badge_typography_typography\":\"globals\\/typography?id=accent\",\"archive_cards_title_color\":\"globals\\/colors?id=primary\",\"archive_cards_title_typography_typography\":\"globals\\/typography?id=6ed476c\",\"archive_cards_meta_color\":\"globals\\/colors?id=text\",\"archive_cards_meta_typography_typography\":\"globals\\/typography?id=0009af8\",\"archive_cards_excerpt_color\":\"globals\\/colors?id=text\",\"archive_cards_excerpt_typography_typography\":\"globals\\/typography?id=text\",\"pagination_typography_typography\":\"globals\\/typography?id=text\",\"pagination_color\":\"globals\\/colors?id=secondary\",\"nothing_found_color\":\"globals\\/colors?id=text\",\"nothing_found_typography_typography\":\"globals\\/typography?id=text\",\"archive_cards_meta_separator_color\":\"globals\\/colors?id=text\"},\"archive_cards_badge_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"archive_cards_badge_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"pa_condition_repeater\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_mask_image\":{\"url\":\"\",\"id\":\"\"},\"archive_classic_masonry\":\"yes\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"198f102\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"7576a785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"31955ad9\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"globals\\/colors?id=9be98e4\",\"ekit_contact_form_input_style_border_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"globals\\/typography?id=a034570\",\"ekit_contact_form_input_style_font_color\":\"globals\\/colors?id=6fc639b\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"5ba79301\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7e2c037a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"75d7ba95\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2a2a5466\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"+(827) 123 - 456 - 7891\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6561909c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Mail Us\",\"description_text\":\"info@evaniayogastudio.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("8827","976","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("8828","976","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("8829","976","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("8830","976","_elementor_controls_usage","a:6:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:22:\"ekit_heading_title_tag\";i:2;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:2;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:5:{s:32:\"ekit_heading_focused_title_color\";i:2;s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;s:28:\"ekit_heading_sub_title_color\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:13:\"archive-posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:30:\"archive_classic_meta_separator\";i:1;s:33:\"archive_cards_thumbnail_size_size\";i:1;s:24:\"archive_cards_item_ratio\";i:1;s:28:\"archive_cards_read_more_text\";i:1;s:25:\"archive_cards_show_avatar\";i:1;s:28:\"archive_cards_show_read_more\";i:1;s:28:\"archive_cards_excerpt_length\";i:1;s:23:\"archive_cards_meta_data\";i:1;s:23:\"archive_classic_masonry\";i:1;}s:16:\"section_advanced\";a:1:{s:21:\"nothing_found_message\";i:1;}}s:5:\"style\";a:7:{s:33:\"archive_cards_section_design_card\";a:5:{s:27:\"archive_cards_card_bg_color\";i:1;s:32:\"archive_cards_card_border_radius\";i:1;s:31:\"archive_cards_meta_border_color\";i:1;s:26:\"archive_cards_card_padding\";i:1;s:26:\"archive_cards_hover_effect\";i:1;}s:34:\"archive_cards_section_design_image\";a:7:{s:28:\"archive_cards_badge_bg_color\";i:1;s:25:\"archive_cards_badge_color\";i:1;s:27:\"archive_cards_image_spacing\";i:1;s:28:\"archive_cards_badge_position\";i:1;s:26:\"archive_cards_badge_radius\";i:1;s:24:\"archive_cards_badge_size\";i:1;s:26:\"archive_cards_badge_margin\";i:1;}s:36:\"archive_cards_section_design_content\";a:6:{s:25:\"archive_cards_title_color\";i:1;s:27:\"archive_cards_excerpt_color\";i:1;s:29:\"archive_cards_read_more_color\";i:1;s:27:\"archive_cards_title_spacing\";i:1;s:29:\"archive_cards_excerpt_spacing\";i:1;s:31:\"archive_cards_read_more_spacing\";i:1;}s:24:\"section_pagination_style\";a:9:{s:16:\"pagination_color\";i:1;s:22:\"pagination_hover_color\";i:1;s:23:\"pagination_active_color\";i:1;s:18:\"pagination_spacing\";i:1;s:32:\"pagination_typography_typography\";i:1;s:33:\"pagination_typography_font_family\";i:1;s:31:\"pagination_typography_font_size\";i:1;s:33:\"pagination_typography_font_weight\";i:1;s:33:\"pagination_typography_line_height\";i:1;}s:27:\"section_nothing_found_style\";a:6:{s:19:\"nothing_found_color\";i:1;s:35:\"nothing_found_typography_typography\";i:1;s:36:\"nothing_found_typography_font_family\";i:1;s:34:\"nothing_found_typography_font_size\";i:1;s:36:\"nothing_found_typography_font_weight\";i:1;s:36:\"nothing_found_typography_line_height\";i:1;}s:35:\"archive_cards_section_design_layout\";a:2:{s:23:\"archive_cards_alignment\";i:1;s:21:\"archive_cards_row_gap\";i:1;}s:13:\"section_style\";a:2:{s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:2;s:16:\"background_image\";i:2;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:8:{s:24:\"background_overlay_image\";i:2;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:25:\"elementskit-contact-form7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:4:{s:15:\"hover_animation\";i:3;s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;}s:17:\"section_style_box\";a:2:{s:10:\"text_align\";i:3;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:8:{s:18:\"title_bottom_space\";i:3;s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;}}}}}");
INSERT INTO 7ja_postmeta VALUES("8832","976","_thumbnail_id","954");
INSERT INTO 7ja_postmeta VALUES("8833","315","_yoast_wpseo_focuskw","Website ideas and creative inspiration");
INSERT INTO 7ja_postmeta VALUES("8834","315","_yoast_wpseo_metadesc","Welcome to Latitude 39 Creative, our blog is your go-to resource for ideas and creative inspiration. Transform your online presence today!");
INSERT INTO 7ja_postmeta VALUES("8835","315","_yoast_wpseo_linkdex","35");
INSERT INTO 7ja_postmeta VALUES("8836","315","_yoast_wpseo_opengraph-title","Your resource for website ideas and creative inspiration");
INSERT INTO 7ja_postmeta VALUES("8837","315","_yoast_wpseo_opengraph-description","Welcome to Latitude 39 Creative, our blog is your go-to resource for ideas and creative inspiration. Transform your online presence today!");
INSERT INTO 7ja_postmeta VALUES("8838","315","_yoast_wpseo_opengraph-image","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/Untitled-design-300x300.png");
INSERT INTO 7ja_postmeta VALUES("8839","315","_yoast_wpseo_opengraph-image-id","954");
INSERT INTO 7ja_postmeta VALUES("8861","63","_edit_lock","1700009055:1");
INSERT INTO 7ja_postmeta VALUES("8862","63","_last_editor_used_jetpack","block-editor");
INSERT INTO 7ja_postmeta VALUES("8865","63","_edit_last","1");
INSERT INTO 7ja_postmeta VALUES("8868","63","_yoast_wpseo_primary_category","1");
INSERT INTO 7ja_postmeta VALUES("8869","63","_yoast_wpseo_content_score","60");
INSERT INTO 7ja_postmeta VALUES("8870","63","_yoast_wpseo_estimated-reading-time-minutes","6");
INSERT INTO 7ja_postmeta VALUES("8871","63","_yoast_wpseo_wordproof_timestamp","");
INSERT INTO 7ja_postmeta VALUES("8873","978","_wp_attached_file","2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg");
INSERT INTO 7ja_postmeta VALUES("8874","978","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:58:\"2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\";s:8:\"filesize\";i:266326;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5809;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41442;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3139;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24440;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103986;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:53:\"nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:43:\"nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash.jpg\";}");
INSERT INTO 7ja_postmeta VALUES("8875","63","_thumbnail_id","978");
INSERT INTO 7ja_postmeta VALUES("8880","63","_wp_old_date","2022-11-12");
INSERT INTO 7ja_postmeta VALUES("8881","63","_pingme","1");
INSERT INTO 7ja_postmeta VALUES("8882","63","_encloseme","1");
INSERT INTO 7ja_postmeta VALUES("9022","961","_oembed_fff98f941bc1e57ab0017b1bc67f7d96","{{unknown}}");
INSERT INTO 7ja_postmeta VALUES("9023","955","_oembed_f5fadcff6d97de232f43a4312a4cbe1b","{{unknown}}");
INSERT INTO 7ja_postmeta VALUES("9024","953","_oembed_f2862ee04c12edc99e5476f49b6f8489","{{unknown}}");
INSERT INTO 7ja_postmeta VALUES("9115","982","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9116","982","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9117","982","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("9118","982","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("9119","982","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9120","982","_elementor_data","[{\"id\":\"7ed92ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"32865f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5f9ec7da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Contact {{Us}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41d3975d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"340980a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1a1519cc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"4a4f2b8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7268ac59\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4d3c36b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1a914857\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1fd05600\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9121","982","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9122","982","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9123","983","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9124","983","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9125","983","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("9126","983","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("9127","983","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9128","983","_elementor_data","[{\"id\":\"7ed92ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"32865f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5f9ec7da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Contact {{Us}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41d3975d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"340980a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1a1519cc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"4a4f2b8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7268ac59\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4d3c36b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1a914857\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1fd05600\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9129","983","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9130","983","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9131","984","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9132","984","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9133","984","_elementor_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("9134","984","_elementor_pro_version","3.11.0");
INSERT INTO 7ja_postmeta VALUES("9135","984","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9136","984","_elementor_data","[{\"id\":\"7ed92ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":380,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_attachment\":\"fixed\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32865f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5f9ec7da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Contact {{Us}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41d3975d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"340980a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a1519cc\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"4a4f2b8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7268ac59\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4d3c36b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1a914857\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1fd05600\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"helloben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:helloben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9137","984","_elementor_page_assets","a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9138","984","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9139","287","_elementor_controls_usage","a:5:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:2;s:22:\"ekit_heading_title_tag\";i:2;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:2;s:22:\"ekit_heading_sub_title\";i:2;s:31:\"ekit_heading_sub_title_position\";i:2;s:26:\"ekit_heading_sub_title_tag\";i:2;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:2;s:24:\"ekit_heading_extra_title\";i:2;s:16:\"desciption_width\";i:2;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:2;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:2;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:2;s:40:\"ekit_heading_title_typography_typography\";i:1;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:2;s:28:\"ekit_heading_sub_title_color\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:2;s:28:\"ekit_heading_seperator_color\";i:2;}s:40:\"ekit_heading_section_focused_title_style\";a:5:{s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;s:32:\"ekit_heading_focused_title_color\";i:1;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:25:\"elementskit-contact-form7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"link\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:15:\"hover_animation\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;}s:17:\"section_style_box\";a:4:{s:10:\"icon_space\";i:3;s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;}}}}}");
INSERT INTO 7ja_postmeta VALUES("9141","287","_thumbnail_id","221");
INSERT INTO 7ja_postmeta VALUES("9142","287","_yoast_wpseo_focuskw","contact");
INSERT INTO 7ja_postmeta VALUES("9143","287","_yoast_wpseo_metadesc","Get in touch with us today! Whether you have questions or want to explore partnership opportunities, we\'re here to help.");
INSERT INTO 7ja_postmeta VALUES("9144","287","_yoast_wpseo_linkdex","42");
INSERT INTO 7ja_postmeta VALUES("9145","985","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9146","985","_elementor_template_type","popup");
INSERT INTO 7ja_postmeta VALUES("9147","985","_elementor_version","3.10.2");
INSERT INTO 7ja_postmeta VALUES("9148","985","_elementor_pro_version","3.10.3");
INSERT INTO 7ja_postmeta VALUES("9149","985","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("9150","985","_elementor_page_settings","a:18:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"801\";s:5:\"sizes\";a:0:{}}s:11:\"height_type\";s:6:\"custom\";s:6:\"height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"700\";s:5:\"sizes\";a:0:{}}s:18:\"entrance_animation\";s:6:\"zoomIn\";s:14:\"exit_animation\";s:14:\"rotateInUpLeft\";s:27:\"entrance_animation_duration\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"1\";s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:13:\"rgba(0,0,0,0)\";s:26:\"box_shadow_box_shadow_type\";s:0:\"\";s:26:\"overlay_background_color_b\";s:7:\"#2bf4ff\";s:21:\"close_button_vertical\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:28:\"close_button_vertical_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"21.5\";s:5:\"sizes\";a:0:{}}s:23:\"close_button_horizontal\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"14.5\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:3:{s:24:\"overlay_background_color\";s:25:\"globals/colors?id=7ad78f4\";s:18:\"close_button_color\";s:27:\"globals/colors?id=secondary\";s:24:\"close_button_hover_color\";s:24:\"globals/colors?id=accent\";}s:28:\"close_button_vertical_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"95\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"55\";s:5:\"sizes\";a:0:{}}s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9151","985","_elementor_data","[{\"id\":\"efa024a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":968,\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":21,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Bg-popUp.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"background_position_mobile\":\"initial\",\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":\"95\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_direction\":\"negative\",\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_title\":\"Popup\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"730c4500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2cb67c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":19,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/small_c_popup.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"70\",\"height\":\"70\"},\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":\"517\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"73\",\"unit\":\"px\"},\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.3)\"},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.2\",\"sizes\":[]},\"_animation\":\"rotateInDownLeft\",\"_animation_delay\":\"600\",\"_offset_x_mobile\":{\"size\":\"21\",\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":\"38\",\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"_offset_x_tablet\":{\"size\":\"461\",\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":\"-52\",\"unit\":\"px\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1668d22b\",\"elType\":\"section\",\"settings\":{\"_title\":\"Form Inner Section\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"405d58b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":20,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/bubble_bg_popup.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.15)\"},\"padding\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"24\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"21\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"background_overlay_position_mobile\":\"initial\",\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":\"350\",\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=b500f0a\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"64932c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"align_mobile\":\"center\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align_tablet\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=f8a9e51\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78602e9\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"<!-- Google Calendar Appointment Scheduling begin -->\\n<iframe src=\\\"https:\\/\\/calendar.google.com\\/calendar\\/appointments\\/schedules\\/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\\\" style=\\\"border: 0\\\" width=\\\"100%\\\" height=\\\"600\\\" frameborder=\\\"0\\\"><\\/iframe>\\n<!-- end Google Calendar Appointment Scheduling -->\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("9152","985","_elementor_page_assets","a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9153","985","_elementor_popup_display_settings","a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}");
INSERT INTO 7ja_postmeta VALUES("9154","985","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9157","986","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9158","986","_elementor_template_type","popup");
INSERT INTO 7ja_postmeta VALUES("9159","986","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9160","986","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9161","986","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("9162","986","_elementor_page_settings","a:18:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"801\";s:5:\"sizes\";a:0:{}}s:11:\"height_type\";s:6:\"custom\";s:6:\"height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"700\";s:5:\"sizes\";a:0:{}}s:18:\"entrance_animation\";s:6:\"zoomIn\";s:14:\"exit_animation\";s:14:\"rotateInUpLeft\";s:27:\"entrance_animation_duration\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"1\";s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:13:\"rgba(0,0,0,0)\";s:26:\"box_shadow_box_shadow_type\";s:0:\"\";s:26:\"overlay_background_color_b\";s:7:\"#2bf4ff\";s:21:\"close_button_vertical\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:28:\"close_button_vertical_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"21.5\";s:5:\"sizes\";a:0:{}}s:23:\"close_button_horizontal\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"14.5\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:3:{s:24:\"overlay_background_color\";s:25:\"globals/colors?id=7ad78f4\";s:18:\"close_button_color\";s:27:\"globals/colors?id=secondary\";s:24:\"close_button_hover_color\";s:24:\"globals/colors?id=accent\";}s:28:\"close_button_vertical_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"95\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"55\";s:5:\"sizes\";a:0:{}}s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9163","986","_elementor_data","[{\"id\":\"efa024a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":968,\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":21,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Bg-popUp.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"background_position_mobile\":\"initial\",\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":\"95\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_direction\":\"negative\",\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_title\":\"Popup\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"730c4500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2cb67c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":19,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/small_c_popup.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"70\",\"height\":\"70\"},\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":\"517\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"73\",\"unit\":\"px\"},\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.3)\"},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.2\",\"sizes\":[]},\"_animation\":\"rotateInDownLeft\",\"_animation_delay\":\"600\",\"_offset_x_mobile\":{\"size\":\"21\",\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":\"38\",\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"_offset_x_tablet\":{\"size\":\"461\",\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":\"-52\",\"unit\":\"px\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1668d22b\",\"elType\":\"section\",\"settings\":{\"_title\":\"Form Inner Section\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"405d58b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":20,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/bubble_bg_popup.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.15)\"},\"padding\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"24\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"21\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"background_overlay_position_mobile\":\"initial\",\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":\"350\",\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=b500f0a\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"64932c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"align_mobile\":\"center\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align_tablet\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=f8a9e51\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78602e9\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"<!-- Google Calendar Appointment Scheduling begin -->\\n<iframe src=\\\"https:\\/\\/calendar.google.com\\/calendar\\/appointments\\/schedules\\/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\\\" style=\\\"border: 0\\\" width=\\\"100%\\\" height=\\\"600\\\" frameborder=\\\"0\\\"><\\/iframe>\\n<!-- end Google Calendar Appointment Scheduling -->\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("9164","986","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9165","986","_elementor_popup_display_settings","a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}");
INSERT INTO 7ja_postmeta VALUES("9166","986","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9169","987","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9170","987","_elementor_template_type","popup");
INSERT INTO 7ja_postmeta VALUES("9171","987","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9172","987","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9173","987","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("9174","987","_elementor_page_settings","a:18:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"801\";s:5:\"sizes\";a:0:{}}s:11:\"height_type\";s:6:\"custom\";s:6:\"height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"700\";s:5:\"sizes\";a:0:{}}s:18:\"entrance_animation\";s:6:\"zoomIn\";s:14:\"exit_animation\";s:14:\"rotateInUpLeft\";s:27:\"entrance_animation_duration\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"1\";s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:13:\"rgba(0,0,0,0)\";s:26:\"box_shadow_box_shadow_type\";s:0:\"\";s:26:\"overlay_background_color_b\";s:7:\"#2bf4ff\";s:21:\"close_button_vertical\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:28:\"close_button_vertical_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"21.5\";s:5:\"sizes\";a:0:{}}s:23:\"close_button_horizontal\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"14.5\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:3:{s:24:\"overlay_background_color\";s:25:\"globals/colors?id=7ad78f4\";s:18:\"close_button_color\";s:27:\"globals/colors?id=secondary\";s:24:\"close_button_hover_color\";s:24:\"globals/colors?id=accent\";}s:28:\"close_button_vertical_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"95\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"55\";s:5:\"sizes\";a:0:{}}s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9175","987","_elementor_data","[{\"id\":\"efa024a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":968,\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":21,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Bg-popUp.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"background_position_mobile\":\"initial\",\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":\"95\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_direction\":\"negative\",\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_title\":\"Popup\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"730c4500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"78602e9\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"<!-- Google Calendar Appointment Scheduling begin -->\\n<iframe src=\\\"https:\\/\\/calendar.google.com\\/calendar\\/appointments\\/schedules\\/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\\\" style=\\\"border: 0\\\" width=\\\"100%\\\" height=\\\"600\\\" frameborder=\\\"0\\\"><\\/iframe>\\n<!-- end Google Calendar Appointment Scheduling -->\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=f898f31\"}},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("9176","987","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9177","987","_elementor_popup_display_settings","a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}");
INSERT INTO 7ja_postmeta VALUES("9178","987","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9181","988","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9182","988","_elementor_template_type","popup");
INSERT INTO 7ja_postmeta VALUES("9183","988","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9184","988","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9185","988","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("9186","988","_elementor_page_settings","a:18:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"801\";s:5:\"sizes\";a:0:{}}s:11:\"height_type\";s:6:\"custom\";s:6:\"height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"700\";s:5:\"sizes\";a:0:{}}s:18:\"entrance_animation\";s:6:\"zoomIn\";s:14:\"exit_animation\";s:14:\"rotateInUpLeft\";s:27:\"entrance_animation_duration\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"1\";s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:13:\"rgba(0,0,0,0)\";s:26:\"box_shadow_box_shadow_type\";s:0:\"\";s:26:\"overlay_background_color_b\";s:7:\"#2bf4ff\";s:21:\"close_button_vertical\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:28:\"close_button_vertical_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"21.5\";s:5:\"sizes\";a:0:{}}s:23:\"close_button_horizontal\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"14.5\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:3:{s:24:\"overlay_background_color\";s:25:\"globals/colors?id=7ad78f4\";s:18:\"close_button_color\";s:27:\"globals/colors?id=secondary\";s:24:\"close_button_hover_color\";s:24:\"globals/colors?id=accent\";}s:28:\"close_button_vertical_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"95\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"55\";s:5:\"sizes\";a:0:{}}s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9187","988","_elementor_data","[{\"id\":\"efa024a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":968,\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":21,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Bg-popUp.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_position_mobile\":\"initial\",\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":\"95\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_direction\":\"negative\",\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_title\":\"Popup\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"730c4500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"78602e9\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"<!-- Google Calendar Appointment Scheduling begin -->\\n<iframe src=\\\"https:\\/\\/calendar.google.com\\/calendar\\/appointments\\/schedules\\/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\\\" style=\\\"border: 0\\\" width=\\\"100%\\\" height=\\\"600\\\" frameborder=\\\"0\\\"><\\/iframe>\\n<!-- end Google Calendar Appointment Scheduling -->\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=f898f31\"}},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("9188","988","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9189","988","_elementor_popup_display_settings","a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}");
INSERT INTO 7ja_postmeta VALUES("9190","988","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9193","989","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9194","989","_elementor_template_type","popup");
INSERT INTO 7ja_postmeta VALUES("9195","989","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9196","989","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9197","989","_wp_page_template","default");
INSERT INTO 7ja_postmeta VALUES("9198","989","_elementor_page_settings","a:18:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"801\";s:5:\"sizes\";a:0:{}}s:11:\"height_type\";s:6:\"custom\";s:6:\"height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"700\";s:5:\"sizes\";a:0:{}}s:18:\"entrance_animation\";s:6:\"zoomIn\";s:14:\"exit_animation\";s:14:\"rotateInUpLeft\";s:27:\"entrance_animation_duration\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"1\";s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:13:\"rgba(0,0,0,0)\";s:26:\"box_shadow_box_shadow_type\";s:0:\"\";s:26:\"overlay_background_color_b\";s:7:\"#2bf4ff\";s:21:\"close_button_vertical\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:28:\"close_button_vertical_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"21.5\";s:5:\"sizes\";a:0:{}}s:23:\"close_button_horizontal\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:4:\"14.5\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:3:{s:24:\"overlay_background_color\";s:25:\"globals/colors?id=7ad78f4\";s:18:\"close_button_color\";s:27:\"globals/colors?id=secondary\";s:24:\"close_button_hover_color\";s:24:\"globals/colors?id=accent\";}s:28:\"close_button_vertical_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"95\";s:5:\"sizes\";a:0:{}}s:30:\"close_button_horizontal_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"55\";s:5:\"sizes\";a:0:{}}s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9199","989","_elementor_data","[{\"id\":\"efa024a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":968,\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":21,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Bg-popUp.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_position_mobile\":\"initial\",\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":\"95\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_direction\":\"negative\",\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_title\":\"Popup\",\"_timestamp_\":\"v1cEs3NGdVZU1CaE9PZzI0K3YxbXV0UT09\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"730c4500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"356f575\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eaf7c37\\\" name=\\\"popup\\\" settings=\\\"%7B%22action%22%3A%22close%22%2C%22do_not_show_again%22%3A%22yes%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"78602e9\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"<!-- Google Calendar Appointment Scheduling begin -->\\n<iframe src=\\\"https:\\/\\/calendar.google.com\\/calendar\\/appointments\\/schedules\\/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\\\" style=\\\"border: 0\\\" width=\\\"100%\\\" height=\\\"600\\\" frameborder=\\\"0\\\"><\\/iframe>\\n<!-- end Google Calendar Appointment Scheduling -->\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=f898f31\"}},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]");
INSERT INTO 7ja_postmeta VALUES("9200","989","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9201","989","_elementor_popup_display_settings","a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}");
INSERT INTO 7ja_postmeta VALUES("9202","989","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9204","18","_elementor_controls_usage","a:4:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:1;s:13:\"custom_height\";i:1;s:15:\"column_position\";i:1;s:6:\"_title\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:19:\"background_bg_width\";i:1;s:38:\"background_motion_fx_mouseTrack_effect\";i:1;s:37:\"background_motion_fx_mouseTrack_speed\";i:1;s:36:\"background_motion_fx_motion_fx_mouse\";i:1;s:41:\"background_motion_fx_mouseTrack_direction\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("9218","991","footnotes","");
INSERT INTO 7ja_postmeta VALUES("9219","991","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9220","991","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9221","991","_elementor_version","3.15.3");
INSERT INTO 7ja_postmeta VALUES("9222","991","_elementor_pro_version","3.15.1");
INSERT INTO 7ja_postmeta VALUES("9223","991","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9224","991","_elementor_data","[{\"id\":\"3ab7a184\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"5d429e63\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.49000000000000198951966012828052043914794921875,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"31aff16f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"YOUR {{CREATIVE}} DESIGN AGENCY\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#06D9FA\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"589a10d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"3169817b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.368999999999999772626324556767940521240234375,\"_inline_size_mobile\":40,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"c38baa9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_fe_switcher\":\"yes\",\"premium_fe_translate_switcher\":\"yes\",\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-21,\"to\":26}},\"premium_fe_trans_duration\":{\"unit\":\"px\",\"size\":2100,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"primary_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4c4f3503\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.558999999999997498889570124447345733642578125,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_mobile\":60,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"4880c8e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3c78573f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT OUR\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h5\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69fc46c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=9d6a5f6\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e60924e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creative Studio\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"\",\"text_stroke_stroke_color\":\"globals\\/colors?id=accent\"},\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"29315c5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.46600000000000108002495835535228252410888671875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"771647ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"23398cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"76ed954\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b472709\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7d92e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"74184588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"71c65aa0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"7eb4d73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"36dbfd13\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55ef396b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"4db070ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#5CD2B93D\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34fc5136\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"50f1a846\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"507e018b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"406eae34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"4839b663\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67edef15\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"_element_id\":\"about\"},\"elements\":[{\"id\":\"584e297c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1b1e6693\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fbb7944\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"8a64761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7e526aaf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"13ac731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"617dcde5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5a60bb76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"2826f19a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa8e9b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6602bb9b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"64f2c52a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4ed84a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7dc43681\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"a7f97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6e447532\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"102e0cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"2f14b914\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27be53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand and Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"263b0e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1014f657\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3690c3e0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"1207cca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6ae16cfe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"233e8a2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"73b22df\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"367b8ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b6f228f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_b\":\"#000000\",\"content_width\":{\"unit\":\"px\",\"size\":619,\"sizes\":[]}},\"elements\":[{\"id\":\"3eeed8c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"682bf5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13d3463d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":100,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Projects\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":395,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"a41c39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"d8c3db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c4cc6e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Customers\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":396,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"429b7994\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"7526c532\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"78535be1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"3d751f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"4f9344f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ecbe4b3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6f63b2bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"}},\"elements\":[{\"id\":\"6d65770\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0821c23\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_url\":\"\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16c70d9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"e027c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"8a00ac3\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"BFD Advisors\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/IpadYellowTrans-1.png\",\"id\":448,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"title\":\"Pints and Peaks\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pints-and-Peaks.png\",\"id\":453,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"d1e34f0\",\"button_text\":\"Get Started\"},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"BluePrint Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\",\"id\":457,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/blueprintfin.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Check Us Out\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f4ea8f0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[{\"id\":\"4a29b5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[{\"id\":\"8756f2b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Partners}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"298859b\",\"elType\":\"widget\",\"settings\":{\"carousel_slides\":[{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/premium-addons-logo.png\",\"id\":706,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"55b7252\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/leap13-logo.png\",\"id\":707,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"595eca4\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/06\\/Elementor-Logo-Full-Red.png\",\"id\":906,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"274e2e5\",\"link\":{\"url\":\"https:\\/\\/be.elementor.com\\/visit\\/?bta=204996&brand=elementor\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"logos_vertical_alignment\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"pp-logo-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b37233\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"390\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.729999999999999982236431605997495353221893310546875,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"77c0c709\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"322103cb\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What Our {{Clients}} Say.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"_animation\":\"fadeInUp\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"4ffa24b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6ba4e90d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4730800f\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"April Sinclair\",\"designation\":\"\",\"review\":\"We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.\",\"client_photo\":{\"id\":\"\",\"url\":\"\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"}}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_client_name_typography_typography\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_designation_active_color\":\"\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_testimonial_title_separator_color\":\"#26B6A3\",\"ekit_testimonial_client_name_normal_color\":\"#C0BFBF\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ee0b3a7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"24604f5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6415ae45\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{Blog}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5d4bcdbf\",\"elType\":\"section\",\"settings\":{\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"75f768d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"a537c23\",\"elType\":\"widget\",\"settings\":{\"premium_blog_grid\":\"\",\"premium_blog_number_of_posts\":1,\"premium_blog_excerpt_text\":\"Read More \\u00bb\",\"premium_blog_tab_label\":\"All\",\"premium_blog_prev_text\":\"Previous\",\"premium_blog_next_text\":\"Next\",\"categories_repeater\":[{\"_id\":\"fe0d3b9\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[]},\"elements\":[],\"widgetType\":\"premium-addon-blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49f295c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"f3fab24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1e5a28d3\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"697c0728\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1b7e42f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3bd4414f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"41454617\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6169e409\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9225","991","_elementor_page_assets","a:1:{s:6:\"styles\";a:32:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9226","991","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9227","991","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9228","991","_thumbnail_id","955");
INSERT INTO 7ja_postmeta VALUES("9230","992","footnotes","");
INSERT INTO 7ja_postmeta VALUES("9231","992","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9232","992","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9233","992","_elementor_version","3.15.3");
INSERT INTO 7ja_postmeta VALUES("9234","992","_elementor_pro_version","3.15.1");
INSERT INTO 7ja_postmeta VALUES("9235","992","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9236","992","_elementor_data","[{\"id\":\"3ab7a184\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d429e63\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.49000000000000198951966012828052043914794921875,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"31aff16f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"YOUR {{CREATIVE}} DESIGN AGENCY\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#06D9FA\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"589a10d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3169817b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.368999999999999772626324556767940521240234375,\"_inline_size_mobile\":40,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c38baa9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_fe_switcher\":\"yes\",\"premium_fe_translate_switcher\":\"yes\",\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-21,\"to\":26}},\"premium_fe_trans_duration\":{\"unit\":\"px\",\"size\":2100,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"primary_color\":\"globals\\/colors?id=text\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4c4f3503\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.558999999999997498889570124447345733642578125,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_mobile\":60,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4880c8e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3c78573f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT OUR\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h5\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69fc46c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=9d6a5f6\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e60924e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creative Studio\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"\",\"text_stroke_stroke_color\":\"globals\\/colors?id=accent\"},\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"29315c5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.46600000000000108002495835535228252410888671875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"771647ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"23398cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76ed954\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b472709\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7d92e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"74184588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"71c65aa0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7eb4d73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"36dbfd13\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55ef396b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4db070ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#5CD2B93D\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34fc5136\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"50f1a846\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"507e018b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"406eae34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4839b663\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67edef15\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"_element_id\":\"about\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"584e297c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b1e6693\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fbb7944\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a64761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e526aaf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"13ac731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"617dcde5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5a60bb76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2826f19a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa8e9b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6602bb9b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"64f2c52a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4ed84a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7dc43681\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a7f97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6e447532\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"102e0cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2f14b914\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27be53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand and Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"263b0e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1014f657\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3690c3e0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1207cca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ae16cfe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"233e8a2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"73b22df\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"367b8ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b6f228f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_b\":\"#000000\",\"content_width\":{\"unit\":\"px\",\"size\":619,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3eeed8c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"682bf5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13d3463d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":100,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Projects\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":395,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"a41c39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d8c3db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c4cc6e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Customers\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":396,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"429b7994\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7526c532\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"78535be1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3d751f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4f9344f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ecbe4b3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6f63b2bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6d65770\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0821c23\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_url\":\"\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16c70d9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e027c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a00ac3\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"BFD Advisors\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/IpadYellowTrans-1.png\",\"id\":448,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"title\":\"Pints and Peaks\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pints-and-Peaks.png\",\"id\":453,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"d1e34f0\",\"button_text\":\"Get Started\"},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"BluePrint Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\",\"id\":457,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/blueprintfin.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Check Us Out\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f4ea8f0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4a29b5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8756f2b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Partners}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"298859b\",\"elType\":\"widget\",\"settings\":{\"carousel_slides\":[{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/premium-addons-logo.png\",\"id\":706,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"55b7252\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/leap13-logo.png\",\"id\":707,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"595eca4\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/06\\/Elementor-Logo-Full-Red.png\",\"id\":906,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"274e2e5\",\"link\":{\"url\":\"https:\\/\\/be.elementor.com\\/visit\\/?bta=204996&brand=elementor\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"logos_vertical_alignment\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-logo-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b37233\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"390\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.729999999999999982236431605997495353221893310546875,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"77c0c709\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"322103cb\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What Our {{Clients}} Say.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"_animation\":\"fadeInUp\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"4ffa24b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ba4e90d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4730800f\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"April Sinclair\",\"designation\":\"\",\"review\":\"We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.\",\"client_photo\":{\"id\":\"\",\"url\":\"\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"}}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_client_name_typography_typography\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_designation_active_color\":\"\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_testimonial_title_separator_color\":\"#26B6A3\",\"ekit_testimonial_client_name_normal_color\":\"#C0BFBF\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":274,\"sizes\":[]},\"ekit_testimonial_left_right_spacing\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ee0b3a7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"24604f5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6415ae45\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{Blog}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5d4bcdbf\",\"elType\":\"section\",\"settings\":{\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75f768d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a537c23\",\"elType\":\"widget\",\"settings\":{\"premium_blog_grid\":\"\",\"premium_blog_number_of_posts\":1,\"premium_blog_excerpt_text\":\"Read More \\u00bb\",\"premium_blog_tab_label\":\"All\",\"premium_blog_prev_text\":\"Previous\",\"premium_blog_next_text\":\"Next\",\"categories_repeater\":[{\"_id\":\"fe0d3b9\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-addon-blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49f295c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f3fab24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e5a28d3\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"697c0728\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b7e42f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3bd4414f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"41454617\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6169e409\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9237","992","_elementor_page_assets","a:1:{s:6:\"styles\";a:32:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9238","992","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9239","992","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9240","992","_thumbnail_id","955");
INSERT INTO 7ja_postmeta VALUES("9290","997","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9291","997","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9292","997","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9293","997","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9294","997","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9295","997","_elementor_data","[{\"id\":\"567175ec\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3751f680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55a9f657\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Services}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"0571326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"29617a9e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6711f61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32361140\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4400f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"efc4ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book A Call!\",\"button_text_color\":\"#000000\",\"button_background_hover_color\":\"#F2295B\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"9180ecf\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4ea5699f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a981a08\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5be0334f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37e2a5f3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"65a5a3af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37dda3f9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"558049f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd05df7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68ed80ff\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"187d7da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3f5cf61f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bb52126\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#30353c\",\"_element_id\":\"xs_pricing_8\",\"ekit_all_conditions_list\":[{\"_id\":\"c5373fb\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\",\"id\":390,\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a47c13a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"3642df5\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"_inline_size\":null,\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ec2fd6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2dbab3c\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"47d08d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"80bc1b3\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2c92a963\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Monthly Website Retainer\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"500\",\"ekit_pricing_table_duration\":\"\\/Month\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"Up To 10 Hours Website Updates\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"2 Domains\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily Backup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"4 Hours Of Thought Collaboration\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"1ba1984\",\"ekit_pricing_list\":\"Domain Maintenance\"},{\"ekit_pricing_list\":\"Email Maintenance\",\"_id\":\"a627ed5\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7715fe0\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-handshake\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_pricing_order_enable\":\"\",\"ekit_pricing_order_header\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"ekit_pricing_btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"7127c01\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"3de985a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"2b48022\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5abcc645\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Website Rebuild\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"2500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily  Backups\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Transfer Email Service\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Consultation Meeting\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"04cbf73\"},{\"ekit_pricing_list\":\"Website Rebuild\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_text_color\":\"#000000\",\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#1cf196\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"#1cf196\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"#1cf196\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"ba35f89\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_bg_hover_color_group_color\":\"globals\\/colors?id=f898f31\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"6835139\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"5531e400\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"b60bffc\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34cbbb7b\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Branding & Rebranding\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"3500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"6b5e5a1\"},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Branding \",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"453077d\"},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Website Build\\/Rebuild\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Email Setup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"bfaeb66\",\"ekit_pricing_list\":\"Consultation Meetings\"},{\"_id\":\"519321e\",\"ekit_pricing_list\":\"Daily Backup\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7caaebd\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-brands\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"01cc5aa\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"4d03d237\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"70a121a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"95746a5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s Get To {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"658e159e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9296","997","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9297","997","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9298","997","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9299","997","_thumbnail_id","372");
INSERT INTO 7ja_postmeta VALUES("9301","998","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9302","998","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9303","998","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9304","998","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9305","998","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9306","998","_elementor_data","[{\"id\":\"567175ec\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3751f680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55a9f657\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Services}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"0571326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"29617a9e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6711f61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32361140\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4400f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"efc4ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book A Call!\",\"button_text_color\":\"#000000\",\"button_background_hover_color\":\"#F2295B\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"9180ecf\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4ea5699f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a981a08\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5be0334f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37e2a5f3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"65a5a3af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37dda3f9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"558049f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd05df7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68ed80ff\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"187d7da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3f5cf61f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bb52126\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#30353c\",\"_element_id\":\"xs_pricing_8\",\"ekit_all_conditions_list\":[{\"_id\":\"c5373fb\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\",\"id\":390,\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a47c13a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"3642df5\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"_inline_size\":null,\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ec2fd6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2dbab3c\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"47d08d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"80bc1b3\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2c92a963\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Monthly Website Retainer\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"500\",\"ekit_pricing_table_duration\":\"\\/Month\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"Up To 10 Hours Website Updates\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"2 Domains\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily Backup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"4 Hours Of Thought Collaboration\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"1ba1984\",\"ekit_pricing_list\":\"Domain Maintenance\"},{\"ekit_pricing_list\":\"Email Maintenance\",\"_id\":\"a627ed5\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7715fe0\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-handshake\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_pricing_order_enable\":\"\",\"ekit_pricing_order_header\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"ekit_pricing_btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"7127c01\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"3de985a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"2b48022\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5abcc645\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Website Rebuild\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"2500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily  Backups\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Transfer Email Service\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Consultation Meeting\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"04cbf73\"},{\"ekit_pricing_list\":\"Website Rebuild (up to 10 pages)\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"f445a35\",\"ekit_pricing_list\":\"E-commerce Store\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_text_color\":\"#000000\",\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#1cf196\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"#1cf196\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"#1cf196\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"ba35f89\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_bg_hover_color_group_color\":\"globals\\/colors?id=f898f31\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"6835139\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"5531e400\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"b60bffc\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34cbbb7b\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Branding & Rebranding\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"3500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"6b5e5a1\"},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Branding \",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"453077d\"},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Website Build\\/Rebuild\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Email Setup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"bfaeb66\",\"ekit_pricing_list\":\"Consultation Meetings\"},{\"_id\":\"519321e\",\"ekit_pricing_list\":\"Daily Backup\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7caaebd\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-brands\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"01cc5aa\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"4d03d237\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"70a121a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"95746a5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s Get To {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"658e159e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9307","998","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9308","998","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9309","998","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9310","998","_thumbnail_id","372");
INSERT INTO 7ja_postmeta VALUES("9327","1000","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9328","1000","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9329","1000","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9330","1000","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9331","1000","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9332","1000","_elementor_data","[{\"id\":\"567175ec\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3751f680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55a9f657\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Services}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"0571326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"29617a9e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6711f61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32361140\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4400f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"efc4ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book A Call!\",\"button_text_color\":\"#000000\",\"button_background_hover_color\":\"#F2295B\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"9180ecf\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4ea5699f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a981a08\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5be0334f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37e2a5f3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"65a5a3af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37dda3f9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"558049f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd05df7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68ed80ff\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"187d7da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3f5cf61f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bb52126\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#30353c\",\"_element_id\":\"xs_pricing_8\",\"ekit_all_conditions_list\":[{\"_id\":\"c5373fb\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\",\"id\":390,\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a47c13a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"3642df5\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"_inline_size\":null,\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ec2fd6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2dbab3c\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"47d08d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"80bc1b3\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2c92a963\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Monthly Website Retainer\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"500\",\"ekit_pricing_table_duration\":\"\\/Month\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"Up To 10 Hours Website Updates\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"2 Domains\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily Backup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"4 Hours Of Thought Collaboration\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"1ba1984\",\"ekit_pricing_list\":\"Domain Maintenance\"},{\"ekit_pricing_list\":\"Email Maintenance\",\"_id\":\"a627ed5\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7715fe0\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-handshake\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_pricing_order_enable\":\"\",\"ekit_pricing_order_header\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"ekit_pricing_btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"7127c01\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"3de985a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"2b48022\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5abcc645\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Website Rebuild\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"2500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily  Backups\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Transfer Email Service\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Consultation Meeting\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"04cbf73\"},{\"ekit_pricing_list\":\"Website Rebuild (up to 10 pages)\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"f445a35\",\"ekit_pricing_list\":\"E-commerce Store\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_text_color\":\"#000000\",\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#1cf196\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"#1cf196\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"#1cf196\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"ba35f89\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_bg_hover_color_group_color\":\"globals\\/colors?id=f898f31\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"6835139\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"5531e400\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"b60bffc\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34cbbb7b\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Branding & Rebranding\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"3500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"6b5e5a1\"},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Branding \",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"453077d\"},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Website Build\\/Rebuild\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Email Setup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"bfaeb66\",\"ekit_pricing_list\":\"Consultation Meetings\"},{\"_id\":\"519321e\",\"ekit_pricing_list\":\"Daily Backup\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7caaebd\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-brands\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"01cc5aa\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"4d03d237\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"70a121a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"95746a5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s Get To {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"658e159e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9333","1000","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9334","1000","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9335","1000","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9336","1000","_thumbnail_id","372");
INSERT INTO 7ja_postmeta VALUES("9338","1001","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9339","1001","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9340","1001","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9341","1001","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9342","1001","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9343","1001","_elementor_data","[{\"id\":\"567175ec\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3751f680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55a9f657\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Services}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"0571326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"29617a9e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6711f61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32361140\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4400f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"efc4ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book A Call!\",\"button_text_color\":\"#000000\",\"button_background_hover_color\":\"#F2295B\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"9180ecf\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4ea5699f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a981a08\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5be0334f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37e2a5f3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"65a5a3af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37dda3f9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"558049f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd05df7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68ed80ff\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"187d7da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3f5cf61f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bb52126\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#30353c\",\"_element_id\":\"xs_pricing_8\",\"ekit_all_conditions_list\":[{\"_id\":\"c5373fb\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\",\"id\":390,\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a47c13a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"3642df5\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"_inline_size\":null,\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ec2fd6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2dbab3c\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"47d08d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"80bc1b3\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2c92a963\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Monthly Website Retainer\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"500\",\"ekit_pricing_table_duration\":\"\\/Month\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"Up To 10 Hours Website Updates\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"2 Domains\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily Backup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"4 Hours Of Thought Collaboration\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"1ba1984\",\"ekit_pricing_list\":\"Domain Maintenance\"},{\"ekit_pricing_list\":\"Email Maintenance\",\"_id\":\"a627ed5\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7715fe0\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-handshake\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_pricing_order_enable\":\"\",\"ekit_pricing_order_header\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"ekit_pricing_btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"7127c01\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"3de985a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"2b48022\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5abcc645\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Website Rebuild\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"2500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily  Backups\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Transfer Email Service\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Consultation Meeting\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"04cbf73\"},{\"ekit_pricing_list\":\"Website Rebuild (up to 10 pages)\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"f445a35\",\"ekit_pricing_list\":\"E-commerce Store\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_text_color\":\"#000000\",\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#1cf196\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"#1cf196\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"#1cf196\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"ba35f89\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_bg_hover_color_group_color\":\"globals\\/colors?id=f898f31\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"6835139\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"5531e400\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"b60bffc\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34cbbb7b\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Branding & Rebranding\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"3500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"6b5e5a1\"},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Branding \",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"453077d\"},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Website Build\\/Rebuild\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Email Setup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"bfaeb66\",\"ekit_pricing_list\":\"Consultation Meetings\"},{\"_id\":\"519321e\",\"ekit_pricing_list\":\"Daily Backup\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7caaebd\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-brands\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"01cc5aa\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"4d03d237\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"70a121a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"95746a5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s Get To {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"658e159e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9344","1001","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9345","1001","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9346","1001","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9347","1001","_thumbnail_id","372");
INSERT INTO 7ja_postmeta VALUES("9349","1002","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9350","1002","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9351","1002","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9352","1002","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9353","1002","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9354","1002","_elementor_data","[{\"id\":\"567175ec\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":355,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3751f680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55a9f657\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Services}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"0571326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"29617a9e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6711f61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32361140\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4400f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"efc4ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book A Call!\",\"button_text_color\":\"#000000\",\"button_background_hover_color\":\"#F2295B\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"9180ecf\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4ea5699f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a981a08\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5be0334f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37e2a5f3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"65a5a3af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"37dda3f9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"558049f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1fd05df7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"68ed80ff\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"187d7da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3f5cf61f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bb52126\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#30353c\",\"_element_id\":\"xs_pricing_8\",\"ekit_all_conditions_list\":[{\"_id\":\"c5373fb\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\",\"id\":390,\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6a47c13a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"3642df5\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"_inline_size\":null,\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ec2fd6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2dbab3c\"}],\"ekit_section_parallax_multi_items\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"47d08d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"80bc1b3\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2c92a963\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Monthly Website Retainer\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"500\",\"ekit_pricing_table_duration\":\"\\/Month\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"Up To 10 Hours Website Updates\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"2 Domains\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily Backup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"4 Hours Of Thought Collaboration\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"1ba1984\",\"ekit_pricing_list\":\"Domain Maintenance\"},{\"ekit_pricing_list\":\"Email Maintenance\",\"_id\":\"a627ed5\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7715fe0\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-handshake\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_pricing_order_enable\":\"\",\"ekit_pricing_order_header\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"ekit_pricing_btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"7127c01\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"3de985a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"space_between_widgets\":\"0\",\"ekit_all_conditions_list\":[{\"_id\":\"2b48022\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5abcc645\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Website Rebuild\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"2500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Daily  Backups\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Transfer Email Service\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"4d6ce20\"},{\"ekit_pricing_list\":\"Consultation Meeting\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"04cbf73\"},{\"ekit_pricing_list\":\"Website Rebuild (up to 10 pages)\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"f445a35\",\"ekit_pricing_list\":\"E-commerce Store\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_text_color\":\"#000000\",\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#1cf196\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"#1cf196\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"#1cf196\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"ba35f89\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_bg_hover_color_group_color\":\"globals\\/colors?id=f898f31\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"6835139\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"},{\"id\":\"5531e400\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"b60bffc\"}],\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34cbbb7b\",\"elType\":\"widget\",\"settings\":{\"table_title\":\"Free\",\"currency_icon\":\"$\",\"table_price\":\"0.00\",\"table_duration\":\"\\/Month\",\"table_content\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which\",\"table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"8d049b2\",\"list\":\"15 Email Account\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"3099fea\",\"list\":\"200 GB Space\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5d8de3c\",\"list\":\"5 Domain Name\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"5a4c104\",\"list\":\"600 GB Bandwidth\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"16d021f\",\"list\":\"25 Mysql Databases\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-cross\",\"_id\":\"68e2709\",\"list\":\"Enhanced Security\",\"list_icon_color\":\"\",\"list_content_typography_typography\":\"\",\"list_content_typography_font_family\":\"\",\"list_content_typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_font_weight\":\"\",\"list_content_typography_text_transform\":\"\",\"list_content_typography_font_style\":\"\",\"list_content_typography_text_decoration\":\"\",\"list_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"list_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"list_content_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\"}}],\"btn_text\":\"Purchase Now\",\"tag_align\":\"-15\",\"content_typography_typography\":\"custom\",\"btn_border_style\":\"solid\",\"btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"btn_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"btn_box_shadow_color\":\"#ba77b9\",\"table_subtitle\":\"\",\"content_style\":\"list\",\"tag_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"tag_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"divider_weight\":{\"unit\":\"px\",\"size\":\"1\"},\"divider_width\":{\"unit\":\"px\",\"size\":\"0\"},\"divider_gap\":{\"unit\":\"px\",\"size\":\"6\"},\"ekit_pricing_table_title\":\"Branding & Rebranding\",\"ekit_pricing_table_subtitle\":\"Starting at\",\"ekit_pricing_currency_icon\":\"$\",\"ekit_pricing_table_price\":\"3500\",\"ekit_pricing_table_duration\":\"\",\"ekit_pricing_table_content_repeater\":[{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"_id\":\"85ee855\",\"ekit_pricing_list\":\"1 Year Website Hosting\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Domain Transfer\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"6b5e5a1\"},{\"item\":\"15 Email Account\",\"check_icon\":\"icon icon-tick\",\"ekit_pricing_list\":\"Branding\\/Consultation Meetings\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"custom\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"453077d\"},{\"item\":\"1 Domain Name\",\"check_icon\":\"icon icon-tick\",\"_id\":\"14baa04\",\"ekit_pricing_list\":\"Website Build\\/Rebuild\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"item\":\"100 GB Space\",\"check_icon\":\"icon icon-tick\",\"_id\":\"61572a8\",\"ekit_pricing_list\":\"Email Setup\",\"ekit_pricing_check_icon\":\"icon icon-check\",\"ekit_pricing_list_icon_color\":\"#1cf196\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"ekit_pricing_list\":\"Enhanced Security\",\"ekit_pricing_check_icon\":\"icon icon-cross\",\"ekit_pricing_list_icon_color\":\"#f55145\",\"ekit_pricing_list_content_typography_group_typography\":\"\",\"ekit_pricing_list_content_typography_group_font_family\":\"\",\"ekit_pricing_list_content_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_font_weight\":\"\",\"ekit_pricing_list_content_typography_group_text_transform\":\"\",\"ekit_pricing_list_content_typography_group_font_style\":\"\",\"ekit_pricing_list_content_typography_group_text_decoration\":\"\",\"ekit_pricing_list_content_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_pricing_list_content_typography_group_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_id\":\"2eced6a\"},{\"_id\":\"519321e\",\"ekit_pricing_list\":\"Daily Backup\"}],\"ekit_pricing_btn_text\":\"Lets Get Started\",\"ekit_pricing_table_content\":\"paragraph\",\"ekit_pricing_content_style\":\"list\",\"ekit_pricing_title_hover_color\":\"#ffffff\",\"ekit_pricing_tag_align\":\"-15\",\"ekit_pricing_tag_bg_hover_color_group_background\":\"gradient\",\"ekit_pricing_tag_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_btn_hover_color\":\"#000000\",\"ekit_pricing_btn_bg_hover_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_hover_color_group_color\":\"#1cf196\",\"ekit_pricing_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_btn_border_color\":\"#e7e7e7\",\"ekit_pricing_btn_hover_border_color\":\"rgba(37,117,252,0)\",\"ekit_pricing_body_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_tag_bg_color_background\":\"gradient\",\"ekit_pricing_tag_bg_color_color\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_color_b\":\"rgba(255,255,255,0)\",\"ekit_pricing_tag_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_tag_bg_hover_color_group_color_b\":\"#ffffff\",\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_content_hover_color\":\"#979797\",\"ekit_pricing_divider_color\":\"#ffffff\",\"ekit_pricing_btn_bg_hover_color_group_color_b\":\"#9460ff\",\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_button_box_shadow_hover_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_hover_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_bg_hover_color_background\":\"gradient\",\"ekit_pricing_body_bg_hover_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"70\"},\"ekit_pricing_icon_type\":\"icon\",\"ekit_pricing_icon\":\"icon icon-hand_shake\",\"ekit_pricing_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_pricing_title_text_color\":\"#ffffff\",\"ekit_pricing_tag_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_tag_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_period_text_color\":\"#979797\",\"ekit_pricing_period_vertical_position\":\"bottom\",\"ekit_pricing_tag_text_color\":\"#1cf196\",\"ekit_pricing_tag_border_color\":\"rgba(0,0,0,0)\",\"ekit_pricing_tag_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_content_text_color\":\"#979797\",\"ekit_pricing_btn_bg_color_group_background\":\"classic\",\"ekit_pricing_btn_bg_color_group_color\":\"#ffffff\",\"ekit_pricing_button_box_shadow_dimensions\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_button_box_shadow_color\":\"rgba(0,0,0,0.1)\",\"ekit_pricing_body_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"\"},\"ekit_pricing_body_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_pricing_body_bg_color_group_background\":\"classic\",\"ekit_pricing_body_bg_color_group_color\":\"rgba(255,255,255,0.01)\",\"ekit_pricing_body_bg_color_group_color_b\":\"#fe8f75\",\"ekit_pricing_body_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\"},\"ekit_pricing_body_border_style\":\"solid\",\"ekit_pricing_body_border_dimensions\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_pricing_body_border_color\":\"rgba(255,255,255,0.1)\",\"ekit_pricing_body_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_pricing_icon_primary_color\":\"#1cf196\",\"ekit_pricing_icon_space\":{\"unit\":\"px\",\"size\":\"12\"},\"ekit_pricing_body_hover_border_color\":\"#1cf196\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.01)\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_color\":\"rgba(255,255,255,0.1)\",\"_border_hover_border\":\"solid\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"_border_hover_color\":\"#1cf196\",\"_box_shadow_hover_box_shadow_type\":\"yes\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":\"20\",\"vertical\":\"20\",\"blur\":\"40\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"ekit_pricing_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"ekit_pricing_price_typography_group_typography\":\"custom\",\"ekit_pricing_price_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"ekit_pricing_period_typography_group_typography\":\"custom\",\"ekit_pricing_period_typography_group_font_size_tablet\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"ekit_pricing_period_vertical_position_tablet\":\"middle\",\"ekit_pricing_currency_vertical_position_tablet\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"7caaebd\"}],\"ekit_pricing_icons\":{\"value\":\"icon icon-brands\",\"library\":\"ekiticons\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__fa4_migrated\":{\"ekit_pricing_icons\":true},\"__globals__\":{\"ekit_pricing_btn_text_color\":\"globals\\/colors?id=secondary\"},\"__dynamic__\":{\"ekit_pricing_btn_link\":\"[elementor-tag id=\\\"01cc5aa\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%2218%22%7D\\\"]\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-pricing\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"4d03d237\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"70a121a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"95746a5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Let\'s Get To {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_focused_title_color_hover\":\"#F2295B\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"658e159e\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=accent\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9355","1002","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9356","1002","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9357","1002","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9358","1002","_thumbnail_id","372");
INSERT INTO 7ja_postmeta VALUES("9360","131","_elementor_controls_usage","a:8:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:3;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;s:22:\"ekit_heading_title_tag\";i:2;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:3;s:22:\"ekit_heading_sub_title\";i:3;s:31:\"ekit_heading_sub_title_position\";i:3;s:26:\"ekit_heading_sub_title_tag\";i:3;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:3;s:24:\"ekit_heading_extra_title\";i:3;s:16:\"desciption_width\";i:3;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:3;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:3;}}s:5:\"style\";a:4:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:3;s:40:\"ekit_heading_title_typography_typography\";i:3;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:3;s:41:\"ekit_heading_title_typography_font_weight\";i:3;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:7:{s:32:\"ekit_heading_focused_title_color\";i:3;s:33:\"ekit_heading_use_focused_title_bg\";i:1;s:38:\"ekit_heading_focused_title_color_hover\";i:3;s:48:\"ekit_heading_focused_title_typography_typography\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:40:\"ekit_heading_title_text_decoration_color\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_color\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:7:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:3;s:28:\"ekit_heading_sub_title_color\";i:3;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:3;s:28:\"ekit_heading_seperator_color\";i:3;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:3;s:18:\"animation_duration\";i:3;s:6:\"sticky\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:10;s:21:\"space_between_widgets\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:8;s:6:\"margin\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:18:\"animation_duration\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:15:\"background_ypos\";i:1;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:1;s:19:\"background_bg_width\";i:1;s:15:\"background_size\";i:2;s:16:\"background_color\";i:2;s:38:\"background_motion_fx_translateY_effect\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:3;s:26:\"background_overlay_opacity\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:6:\"margin\";i:1;s:11:\"_element_id\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:17:\"button_text_color\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:20:\"elementskit-icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"ekit_icon_box\";a:4:{s:32:\"ekit_icon_box_enable_header_icon\";i:4;s:24:\"ekit_icon_box_title_text\";i:4;s:30:\"ekit_icon_box_description_text\";i:4;s:26:\"ekit_icon_box_header_image\";i:4;}s:30:\"ekit_icon_box_section_settings\";a:1:{s:24:\"ekit_icon_box_title_size\";i:4;}s:28:\"ekit_icon_box_section_button\";a:2:{s:24:\"ekit_icon_box_enable_btn\";i:1;s:21:\"ekit_icon_box_btn_url\";i:1;}}s:5:\"style\";a:5:{s:38:\"ekit_icon_box_section_background_style\";a:11:{s:41:\"ekit_icon_box_infobox_bg_group_background\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_color\";i:4;s:40:\"ekit_icon_box_iocnbox_border_group_width\";i:4;s:36:\"ekit_icon_box_infobox_border_radious\";i:4;s:47:\"ekit_icon_box_infobox_bg_hover_group_background\";i:4;s:42:\"ekit_icon_box_infobox_bg_hover_group_color\";i:2;s:44:\"ekit_icon_box_infobox_bg_hover_group_color_b\";i:4;s:38:\"ekit_icon_box_info_box_hover_animation\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_image\";i:2;s:32:\"ekit_icon_box_infobox_bg_padding\";i:4;s:38:\"ekit_icon_box_infobox_bg_group_color_b\";i:2;}s:31:\"ekit_icon_section_style_content\";a:13:{s:27:\"ekit_icon_description_color\";i:3;s:33:\"ekit_icon_description_color_hover\";i:2;s:49:\"ekit_icon_description_typography_group_typography\";i:3;s:50:\"ekit_icon_description_typography_group_font_family\";i:3;s:50:\"ekit_icon_description_typography_group_font_weight\";i:3;s:50:\"ekit_icon_description_typography_group_line_height\";i:3;s:21:\"ekit_icon_title_color\";i:2;s:27:\"ekit_icon_title_color_hover\";i:2;s:43:\"ekit_icon_title_typography_group_typography\";i:2;s:44:\"ekit_icon_title_typography_group_font_family\";i:2;s:42:\"ekit_icon_title_typography_group_font_size\";i:2;s:44:\"ekit_icon_title_typography_group_font_weight\";i:2;s:44:\"ekit_icon_title_typography_group_line_height\";i:2;}s:32:\"ekit_icon_box_section_style_icon\";a:3:{s:32:\"ekit_icon_box_icon_primary_color\";i:4;s:25:\"ekit_icon_box_icon_height\";i:4;s:24:\"ekit_icon_box_icon_width\";i:4;}s:37:\"ekit_icon_box_section_bg_ovelry_style\";a:1:{s:24:\"ekit_icon_box_show_image\";i:4;}s:27:\"ekit_icon_box_section_style\";a:2:{s:45:\"ekit_icon_box_btn_background_group_background\";i:1;s:51:\"ekit_icon_box_btn_background_hover_group_background\";i:1;}}}}s:19:\"elementskit-pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:3;}}s:7:\"content\";a:4:{s:25:\"ekit_pricing_pricing_plan\";a:5:{s:24:\"ekit_pricing_table_title\";i:3;s:27:\"ekit_pricing_table_subtitle\";i:3;s:22:\"ekit_pricing_icon_type\";i:3;s:18:\"ekit_pricing_image\";i:3;s:18:\"ekit_pricing_icons\";i:3;}s:24:\"ekit_pricing_pricing_tag\";a:2:{s:24:\"ekit_pricing_table_price\";i:3;s:27:\"ekit_pricing_table_duration\";i:3;}s:25:\"ekit_pricing_features_tab\";a:3:{s:35:\"ekit_pricing_table_content_repeater\";i:3;s:26:\"ekit_pricing_table_content\";i:3;s:26:\"ekit_pricing_content_style\";i:3;}s:29:\"ekit_pricing_button_style_tab\";a:2:{s:21:\"ekit_pricing_btn_text\";i:3;s:21:\"ekit_pricing_btn_link\";i:3;}}s:5:\"style\";a:6:{s:32:\"sekit_pricing_ection_title_style\";a:2:{s:30:\"ekit_pricing_title_hover_color\";i:3;s:29:\"ekit_pricing_title_text_color\";i:3;}s:30:\"ekit_pricing_section_tag_style\";a:16:{s:48:\"ekit_pricing_tag_bg_hover_color_group_background\";i:3;s:30:\"ekit_pricing_tag_border_radius\";i:3;s:36:\"ekit_pricing_tag_bg_color_background\";i:3;s:31:\"ekit_pricing_tag_bg_color_color\";i:3;s:33:\"ekit_pricing_tag_bg_color_color_b\";i:3;s:40:\"ekit_pricing_tag_bg_color_gradient_angle\";i:3;s:45:\"ekit_pricing_tag_bg_hover_color_group_color_b\";i:3;s:52:\"ekit_pricing_tag_bg_hover_color_group_gradient_angle\";i:3;s:29:\"ekit_pricing_tag_text_padding\";i:3;s:28:\"ekit_pricing_tag_text_margin\";i:3;s:30:\"ekit_pricing_period_text_color\";i:3;s:37:\"ekit_pricing_period_vertical_position\";i:3;s:27:\"ekit_pricing_tag_text_color\";i:3;s:29:\"ekit_pricing_tag_border_color\";i:3;s:46:\"ekit_pricing_price_typography_group_typography\";i:3;s:47:\"ekit_pricing_period_typography_group_typography\";i:3;}s:30:\"ekit_pricing_section_btn_style\";a:11:{s:28:\"ekit_pricing_btn_hover_color\";i:3;s:48:\"ekit_pricing_btn_bg_hover_color_group_background\";i:3;s:43:\"ekit_pricing_btn_bg_hover_color_group_color\";i:2;s:34:\"ekit_pricing_btn_border_dimensions\";i:3;s:29:\"ekit_pricing_btn_border_color\";i:3;s:35:\"ekit_pricing_btn_hover_border_color\";i:3;s:45:\"ekit_pricing_btn_bg_hover_color_group_color_b\";i:3;s:52:\"ekit_pricing_btn_bg_hover_color_group_gradient_angle\";i:3;s:42:\"ekit_pricing_btn_bg_color_group_background\";i:3;s:37:\"ekit_pricing_btn_bg_color_group_color\";i:3;s:27:\"ekit_pricing_btn_text_color\";i:1;}s:34:\"ekit_pricing_section_content_style\";a:3:{s:32:\"ekit_pricing_content_hover_color\";i:3;s:26:\"ekit_pricing_divider_color\";i:3;s:31:\"ekit_pricing_content_text_color\";i:3;}s:31:\"ekit_pricing_section_style_icon\";a:2:{s:31:\"ekit_pricing_icon_primary_color\";i:3;s:23:\"ekit_pricing_icon_space\";i:3;}s:18:\"ekit_pricing_order\";a:2:{s:25:\"ekit_pricing_order_enable\";i:1;s:25:\"ekit_pricing_order_header\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}s:15:\"_section_border\";a:11:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;s:20:\"_border_hover_border\";i:2;s:19:\"_border_hover_width\";i:2;s:19:\"_border_hover_color\";i:2;s:33:\"_box_shadow_hover_box_shadow_type\";i:2;s:28:\"_box_shadow_hover_box_shadow\";i:2;s:24:\"_border_hover_transition\";i:2;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:25:\"elementskit-contact-form7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}}");
INSERT INTO 7ja_postmeta VALUES("9363","1003","footnotes","");
INSERT INTO 7ja_postmeta VALUES("9364","1003","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9365","1003","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9366","1003","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9367","1003","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9368","1003","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9369","1003","_elementor_data","[{\"id\":\"3ab7a184\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d429e63\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.49000000000000198951966012828052043914794921875,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"31aff16f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"YOUR {{CREATIVE}} DESIGN AGENCY\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#06D9FA\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"589a10d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3169817b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.368999999999999772626324556767940521240234375,\"_inline_size_mobile\":40,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c38baa9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_fe_switcher\":\"yes\",\"premium_fe_translate_switcher\":\"yes\",\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-21,\"to\":26}},\"premium_fe_trans_duration\":{\"unit\":\"px\",\"size\":2100,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"primary_color\":\"globals\\/colors?id=text\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4c4f3503\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.558999999999997498889570124447345733642578125,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_mobile\":60,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4880c8e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3c78573f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT OUR\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h5\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69fc46c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=9d6a5f6\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e60924e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creative Studio\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"\",\"text_stroke_stroke_color\":\"globals\\/colors?id=accent\"},\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"29315c5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.46600000000000108002495835535228252410888671875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"771647ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"23398cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76ed954\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b472709\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7d92e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"74184588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"71c65aa0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7eb4d73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"36dbfd13\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55ef396b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4db070ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#5CD2B93D\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34fc5136\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"50f1a846\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"507e018b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"406eae34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4839b663\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67edef15\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"_element_id\":\"about\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"584e297c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b1e6693\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fbb7944\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a64761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e526aaf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"13ac731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"617dcde5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5a60bb76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2826f19a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa8e9b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6602bb9b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"64f2c52a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4ed84a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7dc43681\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a7f97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6e447532\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"102e0cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2f14b914\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27be53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand and Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"263b0e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1014f657\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3690c3e0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1207cca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ae16cfe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"233e8a2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"73b22df\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"367b8ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b6f228f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_b\":\"#000000\",\"content_width\":{\"unit\":\"px\",\"size\":619,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3eeed8c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"682bf5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13d3463d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":100,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Projects\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":395,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"a41c39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d8c3db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c4cc6e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Customers\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":396,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"429b7994\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7526c532\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"78535be1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3d751f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4f9344f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ecbe4b3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6f63b2bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6d65770\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0821c23\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_url\":\"\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16c70d9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e027c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a00ac3\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"BFD Advisors\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/IpadYellowTrans-1.png\",\"id\":448,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"title\":\"Pints and Peaks\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pints-and-Peaks.png\",\"id\":453,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"d1e34f0\",\"button_text\":\"Get Started\"},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"BluePrint Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\",\"id\":457,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/blueprintfin.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Check Us Out\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f4ea8f0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4a29b5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8756f2b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Partners}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"298859b\",\"elType\":\"widget\",\"settings\":{\"carousel_slides\":[{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/premium-addons-logo.png\",\"id\":706,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"55b7252\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/leap13-logo.png\",\"id\":707,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"595eca4\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/06\\/Elementor-Logo-Full-Red.png\",\"id\":906,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"274e2e5\",\"link\":{\"url\":\"https:\\/\\/be.elementor.com\\/visit\\/?bta=204996&brand=elementor\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"logos_vertical_alignment\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-logo-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b37233\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"390\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.729999999999999982236431605997495353221893310546875,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"77c0c709\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"322103cb\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What Our {{Clients}} Say.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"_animation\":\"fadeInUp\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"4ffa24b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ba4e90d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4730800f\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"April Sinclair\",\"designation\":\"\",\"review\":\"We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.\",\"client_photo\":{\"id\":\"\",\"url\":\"\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"}}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_client_name_typography_typography\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_designation_active_color\":\"\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_testimonial_title_separator_color\":\"#26B6A3\",\"ekit_testimonial_client_name_normal_color\":\"#C0BFBF\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":274,\"sizes\":[]},\"ekit_testimonial_left_right_spacing\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ee0b3a7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"24604f5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6415ae45\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{Blog}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5d4bcdbf\",\"elType\":\"section\",\"settings\":{\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75f768d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a537c23\",\"elType\":\"widget\",\"settings\":{\"premium_blog_grid\":\"\",\"premium_blog_number_of_posts\":1,\"premium_blog_excerpt_text\":\"Read More \\u00bb\",\"premium_blog_tab_label\":\"All\",\"premium_blog_prev_text\":\"Previous\",\"premium_blog_next_text\":\"Next\",\"categories_repeater\":[{\"_id\":\"fe0d3b9\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-addon-blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49f295c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f3fab24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e5a28d3\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"697c0728\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b7e42f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3bd4414f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"41454617\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6169e409\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9370","1003","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9371","1003","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9372","1003","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9373","1003","_thumbnail_id","955");
INSERT INTO 7ja_postmeta VALUES("9375","1004","footnotes","");
INSERT INTO 7ja_postmeta VALUES("9376","1004","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9377","1004","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9378","1004","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9379","1004","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9380","1004","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9381","1004","_elementor_data","[{\"id\":\"3ab7a184\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d429e63\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.49000000000000198951966012828052043914794921875,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"31aff16f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"YOUR {{CREATIVE}} DESIGN AGENCY\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#06D9FA\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"589a10d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3169817b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.368999999999999772626324556767940521240234375,\"_inline_size_mobile\":40,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c38baa9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_fe_switcher\":\"yes\",\"premium_fe_translate_switcher\":\"yes\",\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-21,\"to\":26}},\"premium_fe_trans_duration\":{\"unit\":\"px\",\"size\":2100,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"primary_color\":\"globals\\/colors?id=text\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4c4f3503\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.558999999999997498889570124447345733642578125,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_mobile\":60,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4880c8e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3c78573f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT OUR\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h5\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69fc46c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=9d6a5f6\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e60924e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creative Studio\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"\",\"text_stroke_stroke_color\":\"globals\\/colors?id=accent\"},\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"29315c5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.46600000000000108002495835535228252410888671875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"771647ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"23398cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76ed954\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b472709\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7d92e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"74184588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"71c65aa0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7eb4d73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"36dbfd13\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55ef396b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4db070ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#5CD2B93D\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34fc5136\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"50f1a846\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"507e018b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"406eae34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4839b663\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67edef15\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"_element_id\":\"about\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"584e297c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b1e6693\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fbb7944\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a64761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e526aaf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"13ac731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"617dcde5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5a60bb76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2826f19a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa8e9b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6602bb9b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"64f2c52a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4ed84a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7dc43681\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a7f97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6e447532\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"102e0cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2f14b914\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27be53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand and Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"263b0e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1014f657\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3690c3e0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1207cca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ae16cfe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"233e8a2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"73b22df\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"367b8ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b6f228f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_b\":\"#000000\",\"content_width\":{\"unit\":\"px\",\"size\":619,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3eeed8c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"682bf5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13d3463d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":100,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Projects\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":395,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"a41c39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d8c3db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c4cc6e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Customers\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":396,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"429b7994\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7526c532\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"78535be1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3d751f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4f9344f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ecbe4b3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6f63b2bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6d65770\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0821c23\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_url\":\"\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16c70d9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e027c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a00ac3\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"BFD Advisors\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/IpadYellowTrans-1.png\",\"id\":448,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"title\":\"Pints and Peaks\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pints-and-Peaks.png\",\"id\":453,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"d1e34f0\",\"button_text\":\"Get Started\"},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"BluePrint Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\",\"id\":457,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/blueprintfin.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Check Us Out\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f4ea8f0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4a29b5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8756f2b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Partners}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"298859b\",\"elType\":\"widget\",\"settings\":{\"carousel_slides\":[{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/premium-addons-logo.png\",\"id\":706,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"55b7252\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/leap13-logo.png\",\"id\":707,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"595eca4\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/06\\/Elementor-Logo-Full-Red.png\",\"id\":906,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"274e2e5\",\"link\":{\"url\":\"https:\\/\\/be.elementor.com\\/visit\\/?bta=204996&brand=elementor\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"logos_vertical_alignment\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-logo-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b37233\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"390\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.729999999999999982236431605997495353221893310546875,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"77c0c709\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"322103cb\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What Our {{Clients}} Say.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"_animation\":\"fadeInUp\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"4ffa24b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ba4e90d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4730800f\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"April Sinclair\",\"designation\":\"\",\"review\":\"We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.\",\"client_photo\":{\"id\":\"\",\"url\":\"\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"}}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_client_name_typography_typography\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_designation_active_color\":\"\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_testimonial_title_separator_color\":\"#26B6A3\",\"ekit_testimonial_client_name_normal_color\":\"#C0BFBF\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":274,\"sizes\":[]},\"ekit_testimonial_left_right_spacing\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ee0b3a7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"24604f5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6415ae45\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{Blog}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5d4bcdbf\",\"elType\":\"section\",\"settings\":{\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75f768d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a537c23\",\"elType\":\"widget\",\"settings\":{\"premium_blog_grid\":\"\",\"premium_blog_number_of_posts\":1,\"premium_blog_excerpt_text\":\"Read More \\u00bb\",\"premium_blog_tab_label\":\"All\",\"premium_blog_prev_text\":\"Previous\",\"premium_blog_next_text\":\"Next\",\"categories_repeater\":[{\"_id\":\"fe0d3b9\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-addon-blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49f295c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f3fab24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e5a28d3\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"697c0728\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b7e42f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3bd4414f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"41454617\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6169e409\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9382","1004","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9383","1004","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9384","1004","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9385","1004","_thumbnail_id","955");
INSERT INTO 7ja_postmeta VALUES("9387","1005","footnotes","");
INSERT INTO 7ja_postmeta VALUES("9388","1005","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9389","1005","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9390","1005","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9391","1005","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9392","1005","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9393","1005","_elementor_data","[{\"id\":\"3ab7a184\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5d429e63\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.49000000000000198951966012828052043914794921875,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"31aff16f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"YOUR {{CREATIVE}} DESIGN AGENCY\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#06D9FA\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h1\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_focused_title_typography_font_family\":\"Work Sans\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"bold\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"589a10d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3169817b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.368999999999999772626324556767940521240234375,\"_inline_size_mobile\":40,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c38baa9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_fe_switcher\":\"yes\",\"premium_fe_translate_switcher\":\"yes\",\"premium_fe_Xtranslate\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":{\"from\":-21,\"to\":26}},\"premium_fe_trans_duration\":{\"unit\":\"px\",\"size\":2100,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"primary_color\":\"globals\\/colors?id=text\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4c4f3503\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.558999999999997498889570124447345733642578125,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_mobile\":60,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4880c8e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3c78573f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT OUR\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h5\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69fc46c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=9d6a5f6\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e60924e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creative Studio\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"\",\"text_stroke_stroke_color\":\"globals\\/colors?id=accent\"},\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"29315c5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.46600000000000108002495835535228252410888671875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"771647ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"23398cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.594999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76ed954\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What  We {{Do}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"OUR SERVICES\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b472709\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>IT\\u2019S ALL ABOUT THE<br clear=\\\"none\\\" \\/><span style=\\\"color: #26b6a3;\\\"><strong>STRATEGY<\\/strong><\\/span><\\/h1><p class=\\\"h-subhead\\\">We work together to create<br clear=\\\"none\\\" \\/><span style=\\\"color: #f2295b;\\\"><strong>innovative &amp; strategic solutions.<\\/strong><\\/span><\\/p><p>Our work isn\\u2019t just creating effective plans \\u2013 it\\u2019s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.<\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7d92e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/latitude39creative.com\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"74184588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"71c65aa0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7eb4d73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"36dbfd13\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Brand Identity\",\"ekit_icon_box_description_text\":\"We\'ll help you create a strong, positive story for your company.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_description_color\":\"#F2295B\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=secondary\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_hover_background_color\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/6-Brand-Identity.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_title_color\":\"#F2295B\",\"ekit_icon_title_color_hover\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55ef396b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4db070ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Web Design & Development\",\"ekit_icon_box_description_text\":\"We\'ll work with your vision and ideas to create a responsive fun flowing website.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#5CD2B93D\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_title_color\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/5-Web-Design.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34fc5136\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"50f1a846\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"507e018b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Ecommerce\",\"ekit_icon_box_description_text\":\"We\'ll create a robust foundation so your online store provides a great experience.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"sink\",\"ekit_icon_title_color_hover\":\"#5CD2B9\",\"ekit_icon_description_color_hover\":\"#F9F9F9\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"globals\\/colors?id=accent\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_infobox_bg_group_color_b\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\",\"ekit_icon_box_btn_background_group_color\":\"globals\\/colors?id=primary\",\"ekit_icon_box_btn_background_hover_group_color\":\"globals\\/colors?id=accent\"},\"ekit_icon_box_header_image\":{\"id\":\"358\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1-Ui-Ux.png\"},\"ekit_icon_box_infobox_bg_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Roboto\",\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_btn_url\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"406eae34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4839b663\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_title_text\":\"Digital & Video Marketing\",\"ekit_icon_box_description_text\":\"We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#000000\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_hover_group_background\":\"gradient\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"#5CD2B93D\",\"ekit_icon_box_info_box_hover_animation\":\"float\",\"ekit_icon_description_color\":\"\",\"ekit_icon_box_icon_primary_color\":\"#5CD2B9\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color_b\":\"\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"\",\"ekit_icon_title_color\":\"globals\\/colors?id=accent\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=6fc639b\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"\",\"ekit_icon_description_typography_group_typography\":\"\"},\"ekit_icon_box_header_image\":{\"id\":\"359\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/4-Video-Marketing.png\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_show_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67edef15\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#151515\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"_element_id\":\"about\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"584e297c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b1e6693\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Who We {{Are}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fbb7944\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"380\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Bg-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=349d81c\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a64761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.5\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e526aaf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"13ac731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"617dcde5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":223,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/IMG_0885.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"_mask_position\":\"custom\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5a60bb76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2826f19a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ben\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa8e9b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Website Stuff\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6602bb9b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"64f2c52a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4ed84a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7dc43681\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349d81c\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a7f97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_hover_position\":\"center center\",\"background_overlay_hover_size\":\"cover\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=a88f8f1\",\"background_color\":\"globals\\/colors?id=6fc639b\"},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6e447532\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":227,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/Nicole.jpg\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"sketch\",\"_mask_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"102e0cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2f14b914\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicole\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h4\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27be53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Owner\\/Brand and Everything Design\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"none\",\"header_size\":\"h6\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"align_mobile\":\"center\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"263b0e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1014f657\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3690c3e0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1207cca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ae16cfe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"360\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Untitled-1.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"233e8a2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"73b22df\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"We Use {{Creativity}} To Be Successful\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"WHY CHOOSE US?\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_sub_title_typography_typography\":\"\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focused_title_color\":\"#26B6A3\",\"ekit_heading_seperator_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"367b8ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #f2295b;\\\"><strong>Creativity<\\/strong><\\/span> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.<\\/h5>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align\":\"left\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b6f228f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"363\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"background_attachment\":\"fixed\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_b\":\"#000000\",\"content_width\":{\"unit\":\"px\",\"size\":619,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3eeed8c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"682bf5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"364\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-Project-Done.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13d3463d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":100,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Projects\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":395,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false},{\"id\":\"a41c39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":50,\"space_between_widgets\":5,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d8c3db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"365\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/7-Happy-Costumer.png\"},\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c4cc6e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":45,\"pp_icon_type\":\"icon\",\"icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"counter_title\":\"Happy Customers\",\"counter_layout\":\"layout-10\",\"counter_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"counter_icon_rotation\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"counter_icon_color\":\"globals\\/colors?id=text\",\"counter_num_color\":\"\",\"counter_num_typography_typography\":\"\",\"counter_title_color\":\"globals\\/colors?id=text\",\"counter_title_typography_typography\":\"\"},\"title_html_tag\":\"h3\",\"counter_title_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_image\":{\"id\":396,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"counter_num_color\":\"#26B6A3\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"429b7994\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7526c532\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"78535be1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3d751f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4f9344f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6ecbe4b3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6f63b2bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6d65770\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0821c23\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"_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\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16c70d9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"e027c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8a00ac3\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"BFD Advisors\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/IpadYellowTrans-1.png\",\"id\":448,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"title\":\"Pints and Peaks\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pints-and-Peaks.png\",\"id\":453,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"d1e34f0\",\"button_text\":\"Get Started\"},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"BluePrint Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\",\"id\":457,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/blueprintfin.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Check Us Out\"},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Check Us Out\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f4ea8f0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"372\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_overlay_color\":\"#1A3E39\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4a29b5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8756f2b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Partners}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"298859b\",\"elType\":\"widget\",\"settings\":{\"carousel_slides\":[{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/premium-addons-logo.png\",\"id\":706,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"55b7252\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/leap13-logo.png\",\"id\":707,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"595eca4\",\"link\":{\"url\":\"https:\\/\\/premiumaddons.com\\/?ref=547\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"logo_carousel_slide\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/06\\/Elementor-Logo-Full-Red.png\",\"id\":906,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"274e2e5\",\"link\":{\"url\":\"https:\\/\\/be.elementor.com\\/visit\\/?bta=204996&brand=elementor\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"logos_vertical_alignment\":\"center\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-logo-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45b37233\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"390\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/adadad.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.729999999999999982236431605997495353221893310546875,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"77c0c709\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"content_position\":\"center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"322103cb\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"What Our {{Clients}} Say.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"_animation\":\"fadeInUp\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"4ffa24b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6ba4e90d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4730800f\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"April Sinclair\",\"designation\":\"\",\"review\":\"We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.\",\"client_photo\":{\"id\":\"\",\"url\":\"\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_testimonial_background_group_color\":\"\"},\"_id\":\"1d65eeb\",\"client_logo_active\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"}}],\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#151515CF\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_color\":\"#AAAAAA\",\"ekit_testimonial_description_active_color\":\"#AAAAAA\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Roboto\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_testimonial_description_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_color\":\"#5CD2B9\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_client_name_typography_typography\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_designation_active_color\":\"\"},\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidesToScroll_tablet\":1,\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_testimonial_title_separator_color\":\"#26B6A3\",\"ekit_testimonial_client_name_normal_color\":\"#C0BFBF\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":274,\"sizes\":[]},\"ekit_testimonial_left_right_spacing\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ee0b3a7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"24604f5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6415ae45\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our Latest {{Blog}}.\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"OUR BLOG\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5d4bcdbf\",\"elType\":\"section\",\"settings\":{\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75f768d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_hover_background\":\"gradient\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"background_color_b\":\"globals\\/colors?id=349d81c\",\"background_color\":\"globals\\/colors?id=98f6a1a\",\"background_hover_color_b\":\"globals\\/colors?id=349d81c\",\"background_hover_color\":\"globals\\/colors?id=98f6a1a\",\"border_color\":\"\"},\"_inline_size_tablet\":100,\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_hover_gradient_type\":\"radial\",\"background_hover_gradient_position\":\"top center\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a537c23\",\"elType\":\"widget\",\"settings\":{\"premium_blog_grid\":\"\",\"premium_blog_number_of_posts\":1,\"premium_blog_excerpt_text\":\"Read More \\u00bb\",\"premium_blog_tab_label\":\"All\",\"premium_blog_prev_text\":\"Previous\",\"premium_blog_next_text\":\"Next\",\"categories_repeater\":[{\"_id\":\"fe0d3b9\"}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-addon-blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49f295c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"f3fab24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e5a28d3\",\"elType\":\"widget\",\"settings\":{\"ekit_contact_form7\":\"349\",\"ekit_contact_form_input_label_color\":\"#5CD2B9\",\"ekit_contact_form_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_contact_form_input_style_textarea_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_contact_form_input_style_padding_textarea\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"201\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_contact_form_input_style_background_background\":\"classic\",\"ekit_contact_form_input_style_background_color\":\"#151515CF\",\"ekit_contact_form_input_style_border_border\":\"solid\",\"ekit_contact_form_input_style_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_contact_form_input_style_border_color\":\"#5CD2B9\",\"ekit_contact_form_input_typography_typography\":\"custom\",\"ekit_contact_form_input_typography_font_family\":\"Roboto\",\"ekit_contact_form_input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_typography_font_weight\":\"400\",\"ekit_contact_form_input_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"ekit_contact_form_input_style_font_color\":\"#5CD2B9\",\"ekit_contact_form_input_style_placeholder_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_button_border_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"183\",\"bottom\":\"13\",\"left\":\"183\",\"isLinked\":false},\"ekit_contact_form_button_style_use_width_height\":\"\",\"ekit_contact_form_button_background_background\":\"classic\",\"ekit_contact_form_button_border_border\":\"solid\",\"ekit_contact_form_button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_contact_form_button_hover_background_background\":\"classic\",\"__globals__\":{\"ekit_contact_form_input_label_typography_typography\":\"\",\"ekit_contact_form_input_label_color\":\"\",\"ekit_contact_form_input_style_background_color\":\"\",\"ekit_contact_form_input_style_border_color\":\"\",\"ekit_contact_form_input_placeholder_font_color\":\"\",\"ekit_contact_form_input_typography_typography\":\"\",\"ekit_contact_form_input_style_font_color\":\"\",\"ekit_contact_form_button_color\":\"\",\"ekit_contact_form_button_background_color\":\"\",\"ekit_contact_form_button_typography_typography\":\"\",\"ekit_contact_form_button_border_color\":\"\",\"ekit_contact_form_button_hover_background_color\":\"globals\\/colors?id=primary\",\"ekit_contact_form_button_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_contact_form_input_style_width_tablet\":{\"unit\":\"px\",\"size\":685,\"sizes\":[]},\"ekit_contact_form_button_border_padding_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"274\",\"bottom\":\"13\",\"left\":\"274\",\"isLinked\":false},\"ekit_contact_form_button_style_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_contact_form_input_style_width_mobile\":{\"unit\":\"px\",\"size\":262,\"sizes\":[]},\"ekit_contact_form_button_border_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"62\",\"bottom\":\"13\",\"left\":\"62\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-contact-form7\"}],\"isInner\":false},{\"id\":\"697c0728\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1b7e42f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3bd4414f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"41454617\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6169e409\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9394","1005","_elementor_page_assets","a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}");
INSERT INTO 7ja_postmeta VALUES("9395","1005","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9396","1005","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9397","1005","_thumbnail_id","955");
INSERT INTO 7ja_postmeta VALUES("9399","169","_elementor_controls_usage","a:19:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:9;s:22:\"ekit_heading_title_tag\";i:9;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:9;s:22:\"ekit_heading_sub_title\";i:9;s:31:\"ekit_heading_sub_title_position\";i:9;s:26:\"ekit_heading_sub_title_tag\";i:9;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:9;s:24:\"ekit_heading_extra_title\";i:9;s:16:\"desciption_width\";i:9;}s:30:\"ekit_heading_section_seperator\";a:2:{s:28:\"ekit_heading_seperator_style\";i:9;s:28:\"ekit_heading_seperator_image\";i:9;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:4:{s:24:\"ekit_heading_title_color\";i:9;s:40:\"ekit_heading_title_typography_typography\";i:8;s:39:\"ekit_heading_title_typography_font_size\";i:8;s:41:\"ekit_heading_title_typography_font_weight\";i:6;}s:40:\"ekit_heading_section_focused_title_style\";a:6:{s:32:\"ekit_heading_focused_title_color\";i:2;s:49:\"ekit_heading_focused_title_typography_font_family\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:49:\"ekit_heading_focused_title_typography_font_weight\";i:1;s:49:\"ekit_heading_focused_title_typography_line_height\";i:1;s:48:\"ekit_heading_focus_title_shadow_text_shadow_type\";i:2;}s:36:\"ekit_heading_section_sub_title_style\";a:2:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:9;s:28:\"ekit_heading_sub_title_color\";i:7;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:9;s:28:\"ekit_heading_seperator_color\";i:4;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:9;s:18:\"animation_duration\";i:9;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:18:\"section_premium_fe\";a:4:{s:19:\"premium_fe_switcher\";i:1;s:29:\"premium_fe_translate_switcher\";i:1;s:21:\"premium_fe_Xtranslate\";i:1;s:25:\"premium_fe_trans_duration\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:32;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:32;s:16:\"content_position\";i:13;s:21:\"space_between_widgets\";i:9;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:22;s:6:\"margin\";i:8;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:11;s:18:\"animation_duration\";i:11;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:12:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_color_b_stop\";i:2;s:24:\"background_gradient_type\";i:2;s:17:\"background_repeat\";i:1;s:27:\"background_hover_background\";i:1;s:27:\"background_hover_transition\";i:1;s:29:\"background_hover_color_b_stop\";i:1;s:30:\"background_hover_gradient_type\";i:1;s:34:\"background_hover_gradient_position\";i:1;}s:26:\"section_background_overlay\";a:16:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:2;s:23:\"background_overlay_size\";i:2;s:26:\"background_overlay_opacity\";i:2;s:22:\"css_filters_brightness\";i:2;s:20:\"css_filters_saturate\";i:2;s:35:\"background_overlay_hover_background\";i:2;s:30:\"background_overlay_hover_image\";i:2;s:33:\"background_overlay_hover_position\";i:2;s:29:\"background_overlay_hover_size\";i:2;s:32:\"background_overlay_hover_opacity\";i:2;s:28:\"css_filters_hover_brightness\";i:2;s:35:\"background_overlay_hover_transition\";i:2;s:29:\"background_overlay_color_stop\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;}s:14:\"section_border\";a:2:{s:12:\"border_width\";i:2;s:13:\"border_border\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:7;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:7;s:11:\"header_size\";i:6;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:6;s:25:\"typography_letter_spacing\";i:1;s:22:\"typography_line_height\";i:5;s:21:\"typography_typography\";i:1;s:23:\"text_stroke_text_stroke\";i:1;s:5:\"align\";i:1;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:13:\"content_width\";i:2;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:18:\"animation_duration\";i:3;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:11;s:11:\"_element_id\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:13;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:21:\"background_attachment\";i:5;}s:26:\"section_background_overlay\";a:10:{s:29:\"background_overlay_background\";i:7;s:31:\"background_overlay_color_b_stop\";i:3;s:33:\"background_overlay_gradient_angle\";i:3;s:26:\"background_overlay_opacity\";i:5;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_color_b\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:21:\"typography_typography\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}}}s:20:\"elementskit-icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"ekit_icon_box\";a:4:{s:32:\"ekit_icon_box_enable_header_icon\";i:4;s:24:\"ekit_icon_box_title_text\";i:4;s:30:\"ekit_icon_box_description_text\";i:4;s:26:\"ekit_icon_box_header_image\";i:4;}s:30:\"ekit_icon_box_section_settings\";a:1:{s:24:\"ekit_icon_box_title_size\";i:4;}s:28:\"ekit_icon_box_section_button\";a:2:{s:24:\"ekit_icon_box_enable_btn\";i:1;s:21:\"ekit_icon_box_btn_url\";i:1;}}s:5:\"style\";a:5:{s:38:\"ekit_icon_box_section_background_style\";a:11:{s:41:\"ekit_icon_box_infobox_bg_group_background\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_color\";i:4;s:40:\"ekit_icon_box_iocnbox_border_group_width\";i:4;s:36:\"ekit_icon_box_infobox_border_radious\";i:4;s:47:\"ekit_icon_box_infobox_bg_hover_group_background\";i:4;s:42:\"ekit_icon_box_infobox_bg_hover_group_color\";i:2;s:44:\"ekit_icon_box_infobox_bg_hover_group_color_b\";i:4;s:38:\"ekit_icon_box_info_box_hover_animation\";i:4;s:36:\"ekit_icon_box_infobox_bg_group_image\";i:2;s:32:\"ekit_icon_box_infobox_bg_padding\";i:4;s:38:\"ekit_icon_box_infobox_bg_group_color_b\";i:2;}s:31:\"ekit_icon_section_style_content\";a:13:{s:27:\"ekit_icon_description_color\";i:3;s:33:\"ekit_icon_description_color_hover\";i:2;s:49:\"ekit_icon_description_typography_group_typography\";i:3;s:50:\"ekit_icon_description_typography_group_font_family\";i:3;s:50:\"ekit_icon_description_typography_group_font_weight\";i:3;s:50:\"ekit_icon_description_typography_group_line_height\";i:3;s:21:\"ekit_icon_title_color\";i:2;s:27:\"ekit_icon_title_color_hover\";i:2;s:43:\"ekit_icon_title_typography_group_typography\";i:2;s:44:\"ekit_icon_title_typography_group_font_family\";i:2;s:42:\"ekit_icon_title_typography_group_font_size\";i:2;s:44:\"ekit_icon_title_typography_group_font_weight\";i:2;s:44:\"ekit_icon_title_typography_group_line_height\";i:2;}s:32:\"ekit_icon_box_section_style_icon\";a:3:{s:32:\"ekit_icon_box_icon_primary_color\";i:4;s:25:\"ekit_icon_box_icon_height\";i:4;s:24:\"ekit_icon_box_icon_width\";i:4;}s:37:\"ekit_icon_box_section_bg_ovelry_style\";a:1:{s:24:\"ekit_icon_box_show_image\";i:4;}s:27:\"ekit_icon_box_section_style\";a:2:{s:45:\"ekit_icon_box_btn_background_group_background\";i:1;s:51:\"ekit_icon_box_btn_background_hover_group_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:8:{s:5:\"width\";i:5;s:22:\"css_filters_css_filter\";i:3;s:22:\"css_filters_brightness\";i:3;s:20:\"css_filters_saturate\";i:2;s:28:\"css_filters_hover_css_filter\";i:3;s:28:\"css_filters_hover_brightness\";i:2;s:27:\"background_hover_transition\";i:2;s:21:\"css_filters_hover_hue\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:16:\"_section_masking\";a:5:{s:12:\"_mask_switch\";i:2;s:11:\"_mask_shape\";i:2;s:10:\"_mask_size\";i:2;s:14:\"_mask_position\";i:1;s:16:\"_mask_position_x\";i:1;}}}}s:10:\"pp-counter\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:2;s:12:\"pp_icon_type\";i:2;s:4:\"icon\";i:2;s:13:\"counter_title\";i:2;s:14:\"counter_layout\";i:2;s:14:\"title_html_tag\";i:2;s:10:\"icon_image\";i:2;}}s:5:\"style\";a:3:{s:26:\"section_counter_icon_style\";a:2:{s:17:\"counter_icon_size\";i:2;s:21:\"counter_icon_rotation\";i:2;}s:27:\"section_counter_title_style\";a:1:{s:20:\"counter_title_margin\";i:2;}s:25:\"section_counter_num_style\";a:1:{s:17:\"counter_num_color\";i:2;}}}}s:17:\"elementskit-video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:32:\"ekit_video_popup_content_section\";a:5:{s:27:\"ekit_video_popup_video_type\";i:1;s:29:\"ekit_video_player_self_hosted\";i:1;s:26:\"ekit_video_popup_auto_play\";i:1;s:27:\"ekit_video_popup_video_mute\";i:1;s:17:\"self_poster_image\";i:1;}}s:5:\"style\";a:1:{s:30:\"ekit_video_popup_section_style\";a:3:{s:26:\"ekit_video_popup_icon_size\";i:1;s:40:\"ekit_video_popup_btn_bg_color_background\";i:1;s:35:\"ekit_video_popup_btn_bg_color_image\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:18:\"pp-image-accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_items\";a:1:{s:15:\"accordion_items\";i:1;}}}}s:16:\"pp-logo-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:21:\"section_logo_carousel\";a:1:{s:15:\"carousel_slides\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_logos_style\";a:1:{s:24:\"logos_vertical_alignment\";i:1;}}}}s:23:\"elementskit-testimonial\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:41:\"ekit_testimonial_layout_section_tab_style\";a:1:{s:22:\"ekit_testimonial_style\";i:1;}s:34:\"ekit_testimonial_section_tab_style\";a:5:{s:30:\"ekit_testimonial_rating_enable\";i:1;s:21:\"ekit_testimonial_data\";i:1;s:43:\"ekit_testimonial_wartermark_custom_position\";i:1;s:52:\"ekit_testimonial_wartermark_custom_position_offset_x\";i:1;s:52:\"ekit_testimonial_wartermark_custom_position_offset_y\";i:1;}s:32:\"ekit_testimonial_layout_settings\";a:1:{s:35:\"ekit_testimonial_left_right_spacing\";i:1;}}s:5:\"style\";a:6:{s:31:\"ekit_testimonial_section_layout\";a:4:{s:30:\"ekit_testimonial_layout_margin\";i:1;s:31:\"ekit_testimonial_layout_padding\";i:1;s:45:\"ekit_testimonial_layout_background_background\";i:1;s:40:\"ekit_testimonial_layout_background_color\";i:1;}s:37:\"ekit_testimonial_section_wraper_style\";a:2:{s:52:\"ekit_testimonial_section_wraper_horizontal_alignment\";i:1;s:39:\"ekit_testimonial_section_wraper_padding\";i:1;}s:36:\"ekit_testimonial_content_description\";a:7:{s:34:\"ekit_testimonial_description_color\";i:1;s:41:\"ekit_testimonial_description_active_color\";i:1;s:50:\"ekit_testimonial_description_typography_typography\";i:1;s:51:\"ekit_testimonial_description_typography_font_family\";i:1;s:51:\"ekit_testimonial_description_typography_font_weight\";i:1;s:51:\"ekit_testimonial_description_typography_line_height\";i:1;s:35:\"ekit_testimonial_description_margin\";i:1;}s:41:\"ekit_testimonial_section_wathermark_style\";a:2:{s:41:\"ekit_testimonial_section_wathermark_color\";i:1;s:48:\"ekit_testimonial_section_wathermark_icon_padding\";i:1;}s:39:\"ekit_testimonial_client_content_section\";a:2:{s:34:\"ekit_testimonial_client_image_size\";i:1;s:41:\"ekit_testimonial_client_name_normal_color\";i:1;}s:36:\"ekit_testimonial_title_separetor_tab\";a:1:{s:38:\"ekit_testimonial_title_separator_color\";i:1;}}}}s:18:\"premium-addon-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:24:\"general_settings_section\";a:2:{s:17:\"premium_blog_grid\";i:1;s:28:\"premium_blog_number_of_posts\";i:1;}}s:5:\"style\";a:1:{s:29:\"post_categories_style_section\";a:1:{s:19:\"categories_repeater\";i:1;}}}}s:25:\"elementskit-contact-form7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_tab\";a:1:{s:18:\"ekit_contact_form7\";i:1;}}s:5:\"style\";a:3:{s:35:\"ekit_contact_form_input_label_style\";a:2:{s:35:\"ekit_contact_form_input_label_color\";i:1;s:36:\"ekit_contact_form_input_label_margin\";i:1;}s:29:\"ekit_contact_form_input_style\";a:17:{s:37:\"ekit_contact_form_input_style_padding\";i:1;s:36:\"ekit_contact_form_input_style_height\";i:1;s:45:\"ekit_contact_form_input_style_textarea_height\";i:1;s:46:\"ekit_contact_form_input_style_padding_textarea\";i:1;s:51:\"ekit_contact_form_input_style_background_background\";i:1;s:46:\"ekit_contact_form_input_style_background_color\";i:1;s:43:\"ekit_contact_form_input_style_border_border\";i:1;s:42:\"ekit_contact_form_input_style_border_width\";i:1;s:42:\"ekit_contact_form_input_style_border_color\";i:1;s:45:\"ekit_contact_form_input_typography_typography\";i:1;s:46:\"ekit_contact_form_input_typography_font_family\";i:1;s:44:\"ekit_contact_form_input_typography_font_size\";i:1;s:46:\"ekit_contact_form_input_typography_font_weight\";i:1;s:46:\"ekit_contact_form_input_typography_line_height\";i:1;s:40:\"ekit_contact_form_input_style_font_color\";i:1;s:51:\"ekit_contact_form_input_style_placeholder_font_size\";i:1;s:46:\"ekit_contact_form_input_placeholder_font_color\";i:1;}s:37:\"ekit_contact_form_button_style_holder\";a:6:{s:39:\"ekit_contact_form_button_border_padding\";i:1;s:47:\"ekit_contact_form_button_style_use_width_height\";i:1;s:46:\"ekit_contact_form_button_background_background\";i:1;s:38:\"ekit_contact_form_button_border_border\";i:1;s:37:\"ekit_contact_form_button_border_width\";i:1;s:52:\"ekit_contact_form_button_hover_background_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"link\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:15:\"hover_animation\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:2;}s:17:\"section_style_box\";a:4:{s:10:\"icon_space\";i:3;s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;}}}}}");
INSERT INTO 7ja_postmeta VALUES("9472","1013","_wp_attached_file","2024/04/Core-Financial.png");
INSERT INTO 7ja_postmeta VALUES("9473","1013","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1836;s:6:\"height\";i:853;s:4:\"file\";s:26:\"2024/04/Core-Financial.png\";s:8:\"filesize\";i:411393;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Core-Financial-300x139.png\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54772;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Core-Financial-1024x476.png\";s:5:\"width\";i:1024;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:492426;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Core-Financial-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32851;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Core-Financial-768x357.png\";s:5:\"width\";i:768;s:6:\"height\";i:357;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:286146;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"Core-Financial-1536x714.png\";s:5:\"width\";i:1536;s:6:\"height\";i:714;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1051198;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("9487","1015","_wp_attached_file","2024/04/Designated-Motivator.png");
INSERT INTO 7ja_postmeta VALUES("9488","1015","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1837;s:6:\"height\";i:901;s:4:\"file\";s:32:\"2024/04/Designated-Motivator.png\";s:8:\"filesize\";i:188375;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Designated-Motivator-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37764;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Designated-Motivator-1024x502.png\";s:5:\"width\";i:1024;s:6:\"height\";i:502;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:289751;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Designated-Motivator-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16946;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Designated-Motivator-768x377.png\";s:5:\"width\";i:768;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179019;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"Designated-Motivator-1536x753.png\";s:5:\"width\";i:1536;s:6:\"height\";i:753;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:590490;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO 7ja_postmeta VALUES("9501","1017","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9502","1017","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9503","1017","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9504","1017","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9505","1017","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9506","1017","_elementor_data","[{\"id\":\"7dce709f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":363,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"63d78628\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1750b64a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Projects}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"7757f03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b1835c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c2aa99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ffa81d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b26fa53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5284496d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"263e51b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"40ca50fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e76f662\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bb7ae4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_external_url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"683beae7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1929051a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3cc844e5\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"BFD Advisors\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/IpadYellowTrans-1.png\",\"id\":448,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"Accounting Cornerstone Foundation\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"d1e34f0\",\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"BluePrint Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.13.16-PM-Display-2.png\",\"id\":457,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/blueprintfin.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73547d4f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":1210,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ffc704b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8088eee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Other {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"PORTFOLIO\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1b2a6d1\",\"elType\":\"widget\",\"settings\":{\"premium_gallery_img_size_select\":\"masonry\",\"thumbnail_size\":\"large\",\"premium_gallery_column_number\":\"33.330%\",\"premium_gallery_load_more_text\":\"Load More\",\"premium_gallery_filter\":\"\",\"premium_gallery_first_cat_label\":\"All\",\"premium_gallery_cats_content\":[{\"premium_gallery_img_cat\":\"Category 1\",\"_id\":\"a09c856\"},{\"premium_gallery_img_cat\":\"Category 2\",\"_id\":\"f51c109\"}],\"url_flag\":\"cat\",\"premium_gallery_img_content\":[{\"premium_gallery_img_category\":\"Category 1\",\"_id\":\"a989a7f\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Summer-Hiking-Series-Correct-1024x576-1.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"premium_gallery_img_category\":\"Category 2\",\"_id\":\"ef30d16\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/BFD-main-logo.webp\",\"id\":333,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"0b8ad66\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\",\"id\":456,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/pivotallid.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"9579c37\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"230e833\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pianoonbeach-1.jpeg\",\"id\":452,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/markpianoman.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a882be7\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_image_cell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"premium_gallery_image_vcell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},{\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\",\"id\":925,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/www.fitcfo.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d21652e\"},{\"_id\":\"60d9b8e\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-img-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e02ee23\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"40460ad2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5aeaa30\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"Name\",\"dynamic\":{\"active\":true},\"_id\":\"364cf30\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"_id\":\"f31ff13\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"placeholder\":\"Message\",\"_id\":\"4e5acd1\",\"required\":\"true\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"latitude39creative@gmail.com\",\"email_subject\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@latitude39creative.com\",\"email_from_name\":\"Latitude 39 Creative\",\"email_to_2\":\"latitude39creative@gmail.com\",\"email_subject_2\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@latitude39creative.com\",\"email_from_name_2\":\"Latitude 39 Creative\",\"email_reply_to_2\":\"latitude39creative@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF00\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"field_text_color\":\"globals\\/colors?id=primary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"536aebda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32eaf23c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"d3da867\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5b006f18\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a355d51\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9507","1017","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9508","1017","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9509","1017","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9510","1017","_thumbnail_id","378");
INSERT INTO 7ja_postmeta VALUES("9512","1018","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9513","1018","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9514","1018","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9515","1018","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9516","1018","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9517","1018","_elementor_data","[{\"id\":\"7dce709f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":363,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"63d78628\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1750b64a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Projects}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"7757f03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b1835c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c2aa99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ffa81d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b26fa53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5284496d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"263e51b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"40ca50fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e76f662\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bb7ae4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_external_url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"683beae7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1929051a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3cc844e5\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"Core Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Core-Financial.png\",\"id\":1013,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/corefinancialpros.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"Accounting Cornerstone Foundation\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"d1e34f0\",\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"Designated Motivator\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Designated-Motivator.png\",\"id\":1015,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/designatedmotivator.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73547d4f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":1210,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ffc704b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8088eee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Other {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"PORTFOLIO\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1b2a6d1\",\"elType\":\"widget\",\"settings\":{\"premium_gallery_img_size_select\":\"masonry\",\"thumbnail_size\":\"large\",\"premium_gallery_column_number\":\"33.330%\",\"premium_gallery_load_more_text\":\"Load More\",\"premium_gallery_filter\":\"\",\"premium_gallery_first_cat_label\":\"All\",\"premium_gallery_cats_content\":[{\"premium_gallery_img_cat\":\"Category 1\",\"_id\":\"a09c856\"},{\"premium_gallery_img_cat\":\"Category 2\",\"_id\":\"f51c109\"}],\"url_flag\":\"cat\",\"premium_gallery_img_content\":[{\"premium_gallery_img_category\":\"Category 1\",\"_id\":\"a989a7f\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Summer-Hiking-Series-Correct-1024x576-1.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"premium_gallery_img_category\":\"Category 2\",\"_id\":\"ef30d16\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/BFD-main-logo.webp\",\"id\":333,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"0b8ad66\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\",\"id\":456,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/pivotallid.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"9579c37\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"230e833\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pianoonbeach-1.jpeg\",\"id\":452,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/markpianoman.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a882be7\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_image_cell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"premium_gallery_image_vcell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},{\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\",\"id\":925,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/www.fitcfo.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d21652e\"},{\"_id\":\"60d9b8e\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-img-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e02ee23\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"40460ad2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5aeaa30\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"Name\",\"dynamic\":{\"active\":true},\"_id\":\"364cf30\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"_id\":\"f31ff13\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"placeholder\":\"Message\",\"_id\":\"4e5acd1\",\"required\":\"true\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"latitude39creative@gmail.com\",\"email_subject\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@latitude39creative.com\",\"email_from_name\":\"Latitude 39 Creative\",\"email_to_2\":\"latitude39creative@gmail.com\",\"email_subject_2\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@latitude39creative.com\",\"email_from_name_2\":\"Latitude 39 Creative\",\"email_reply_to_2\":\"latitude39creative@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF00\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"field_text_color\":\"globals\\/colors?id=primary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"536aebda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32eaf23c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"d3da867\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5b006f18\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a355d51\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9518","1018","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9519","1018","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9520","1018","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9521","1018","_thumbnail_id","378");
INSERT INTO 7ja_postmeta VALUES("9525","1019","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9526","1019","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9527","1019","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9528","1019","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9529","1019","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9530","1019","_elementor_data","[{\"id\":\"7dce709f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":363,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"63d78628\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1750b64a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Projects}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"7757f03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b1835c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c2aa99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ffa81d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b26fa53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5284496d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"263e51b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"40ca50fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e76f662\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bb7ae4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_external_url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"683beae7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1929051a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3cc844e5\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"Core Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Core-Financial.png\",\"id\":1013,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/corefinancialpros.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"Accounting Cornerstone Foundation\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"d1e34f0\",\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"Designated Motivator\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Designated-Motivator.png\",\"id\":1015,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/designatedmotivator.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73547d4f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":1210,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ffc704b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8088eee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Other {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"PORTFOLIO\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1b2a6d1\",\"elType\":\"widget\",\"settings\":{\"premium_gallery_img_size_select\":\"masonry\",\"thumbnail_size\":\"large\",\"premium_gallery_column_number\":\"33.330%\",\"premium_gallery_load_more_text\":\"Load More\",\"premium_gallery_filter\":\"\",\"premium_gallery_first_cat_label\":\"All\",\"premium_gallery_cats_content\":[{\"premium_gallery_img_cat\":\"Category 1\",\"_id\":\"a09c856\"},{\"premium_gallery_img_cat\":\"Category 2\",\"_id\":\"f51c109\"}],\"url_flag\":\"cat\",\"premium_gallery_img_content\":[{\"premium_gallery_img_category\":\"Category 1\",\"_id\":\"a989a7f\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Summer-Hiking-Series-Correct-1024x576-1.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"premium_gallery_img_category\":\"Category 2\",\"_id\":\"ef30d16\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/BFD-main-logo.webp\",\"id\":333,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"0b8ad66\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\",\"id\":456,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/pivotallid.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"9579c37\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"230e833\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pianoonbeach-1.jpeg\",\"id\":452,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/markpianoman.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a882be7\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_image_cell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"premium_gallery_image_vcell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},{\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\",\"id\":925,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/www.fitcfo.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d21652e\"},{\"_id\":\"60d9b8e\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-img-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e02ee23\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"40460ad2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5aeaa30\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"Name\",\"dynamic\":{\"active\":true},\"_id\":\"364cf30\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"_id\":\"f31ff13\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"placeholder\":\"Message\",\"_id\":\"4e5acd1\",\"required\":\"true\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"latitude39creative@gmail.com\",\"email_subject\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@latitude39creative.com\",\"email_from_name\":\"Latitude 39 Creative\",\"email_to_2\":\"latitude39creative@gmail.com\",\"email_subject_2\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@latitude39creative.com\",\"email_from_name_2\":\"Latitude 39 Creative\",\"email_reply_to_2\":\"latitude39creative@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF00\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"field_text_color\":\"globals\\/colors?id=primary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"536aebda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32eaf23c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"d3da867\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5b006f18\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a355d51\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9531","1019","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9532","1019","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9533","1019","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9534","1019","_thumbnail_id","378");
INSERT INTO 7ja_postmeta VALUES("9536","1020","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9537","1020","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9538","1020","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9539","1020","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9540","1020","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9541","1020","_elementor_data","[{\"id\":\"7dce709f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":363,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"63d78628\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1750b64a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Projects}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"7757f03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b1835c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c2aa99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ffa81d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b26fa53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5284496d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"263e51b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"40ca50fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e76f662\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bb7ae4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_external_url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"683beae7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1929051a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3cc844e5\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"Core Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Core-Financial.png\",\"id\":1013,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/corefinancialpros.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"Accounting Cornerstone Foundation\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"d1e34f0\",\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"Designated Motivator\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Designated-Motivator.png\",\"id\":1015,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/designatedmotivator.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73547d4f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":1210,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ffc704b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8088eee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Other {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"PORTFOLIO\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1b2a6d1\",\"elType\":\"widget\",\"settings\":{\"premium_gallery_img_size_select\":\"masonry\",\"thumbnail_size\":\"large\",\"premium_gallery_column_number\":\"33.330%\",\"premium_gallery_load_more_text\":\"Load More\",\"premium_gallery_filter\":\"\",\"premium_gallery_first_cat_label\":\"All\",\"premium_gallery_cats_content\":[{\"premium_gallery_img_cat\":\"Category 1\",\"_id\":\"a09c856\"},{\"premium_gallery_img_cat\":\"Category 2\",\"_id\":\"f51c109\"}],\"url_flag\":\"cat\",\"premium_gallery_img_content\":[{\"premium_gallery_img_category\":\"Category 1\",\"_id\":\"a989a7f\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Summer-Hiking-Series-Correct-1024x576-1.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"premium_gallery_img_category\":\"Category 2\",\"_id\":\"ef30d16\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/BFD-main-logo.webp\",\"id\":333,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"0b8ad66\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\",\"id\":456,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/pivotallid.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"9579c37\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"230e833\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pianoonbeach-1.jpeg\",\"id\":452,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/markpianoman.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a882be7\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_image_cell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"premium_gallery_image_vcell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},{\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\",\"id\":925,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/www.fitcfo.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d21652e\"},{\"_id\":\"60d9b8e\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-img-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e02ee23\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"40460ad2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5aeaa30\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"Name\",\"dynamic\":{\"active\":true},\"_id\":\"364cf30\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"_id\":\"f31ff13\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"placeholder\":\"Message\",\"_id\":\"4e5acd1\",\"required\":\"true\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"latitude39creative@gmail.com\",\"email_subject\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@latitude39creative.com\",\"email_from_name\":\"Latitude 39 Creative\",\"email_to_2\":\"latitude39creative@gmail.com\",\"email_subject_2\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@latitude39creative.com\",\"email_from_name_2\":\"Latitude 39 Creative\",\"email_reply_to_2\":\"latitude39creative@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF00\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"field_text_color\":\"globals\\/colors?id=primary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"536aebda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32eaf23c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"d3da867\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5b006f18\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a355d51\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"ben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:ben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9542","1020","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9543","1020","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9544","1020","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9545","1020","_thumbnail_id","378");
INSERT INTO 7ja_postmeta VALUES("9547","1021","_elementor_edit_mode","builder");
INSERT INTO 7ja_postmeta VALUES("9548","1021","_elementor_template_type","wp-page");
INSERT INTO 7ja_postmeta VALUES("9549","1021","_elementor_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9550","1021","_elementor_pro_version","3.21.0");
INSERT INTO 7ja_postmeta VALUES("9551","1021","_wp_page_template","elementor_header_footer");
INSERT INTO 7ja_postmeta VALUES("9552","1021","_elementor_data","[{\"id\":\"7dce709f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":363,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_ypos\":{\"unit\":\"px\",\"size\":-330,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_size\":\"cover\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"63d78628\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"space_between_widgets\":0,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"\",\"heading_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1750b64a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{Projects}}\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"CREATIVE AGENCY\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B921\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_title_text_decoration_color\":\"globals\\/colors?id=text\",\"ekit_heading_focused_title_secondary_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Work Sans\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"bold\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_family\":\"Poppins\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_weight\":\"600\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[{\"_id\":\"d9780ae\",\"pa_condition_date\":\"2023\\/01\\/30\",\"pa_condition_date_range\":\"2023\\/01\\/30\"}],\"premium_mscroll_repeater\":[],\"ekit_heading_focused_title_color_hover\":\"#F2295B4D\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_heading_title_text_decoration_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sticky\":\"top\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false},{\"id\":\"7757f03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.89399999999999835154085303656756877899169921875,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b1835c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#000000\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c2aa99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"2ffa81d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b26fa53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5284496d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Our {{Latest}} Projects.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"LATEST PROJECT\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"900\",\"ekit_heading_focus_title_shadow_text_shadow_type\":\"yes\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"263e51b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"40ca50fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=8630d9f\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1e76f662\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Marketing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"title_color\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bb7ae4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_video_type\":\"self\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VhBl3dHT5SY\",\"ekit_video_self_external_url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"ekit_video_player_self_hosted\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Hike-video.mp4\",\"id\":460,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_auto_play\":\"1\",\"ekit_video_popup_video_mute\":\"1\",\"self_poster_image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/hike-walkway-857x1024-1.jpg\",\"id\":461,\"alt\":\"\",\"source\":\"library\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"__globals__\":{\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=primary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"683beae7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1929051a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3cc844e5\",\"elType\":\"widget\",\"settings\":{\"accordion_items\":[{\"title\":\"Core Financial\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Core-Financial.png\",\"id\":1013,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"dfd4cfe\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/corefinancialpros.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"Accounting Cornerstone Foundation\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"d1e34f0\",\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"title\":\"The Unlimited Outdoors\",\"description\":\"<p>Coming Soon!<\\/p>\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"e4ef53d\",\"button_text\":\"Get Started\"},{\"title\":\"Designated Motivator\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/latitude39creative.com\\/wp-content\\/uploads\\/2024\\/04\\/Designated-Motivator.png\",\"id\":1015,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"6e2ea6b\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/designatedmotivator.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Take A Look\",\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}},{\"_id\":\"43591bb\",\"title\":\"Glass Wallet Ventures\",\"description\":\"\",\"image\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/GW-screenshot.png\",\"id\":865,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"button_text\":\"Take A Look\",\"show_button\":\"yes\",\"link\":{\"url\":\"https:\\/\\/glasswalletventures.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"select_button_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_bg_color_normal\":\"globals\\/colors?id=secondary\",\"button_text_color_normal\":\"globals\\/colors?id=primary\",\"button_bg_color_hover\":\"globals\\/colors?id=primary\",\"button_text_color_hover\":\"globals\\/colors?id=secondary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"pp-image-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73547d4f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"gap\":\"no\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"content_width\":{\"unit\":\"px\",\"size\":1210,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ffc704b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8088eee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Other {{Work}}.\",\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_sub_title\":\"PORTFOLIO\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_seperator_image\":{\"id\":658,\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/02\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1b2a6d1\",\"elType\":\"widget\",\"settings\":{\"premium_gallery_img_size_select\":\"masonry\",\"thumbnail_size\":\"large\",\"premium_gallery_column_number\":\"33.330%\",\"premium_gallery_load_more_text\":\"Load More\",\"premium_gallery_filter\":\"\",\"premium_gallery_first_cat_label\":\"All\",\"premium_gallery_cats_content\":[{\"premium_gallery_img_cat\":\"Category 1\",\"_id\":\"a09c856\"},{\"premium_gallery_img_cat\":\"Category 2\",\"_id\":\"f51c109\"}],\"url_flag\":\"cat\",\"premium_gallery_img_content\":[{\"premium_gallery_img_category\":\"Category 1\",\"_id\":\"a989a7f\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Summer-Hiking-Series-Correct-1024x576-1.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"premium_gallery_img_category\":\"Category 2\",\"_id\":\"ef30d16\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/12\\/BFD-main-logo.webp\",\"id\":333,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/bfdadvisors.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"0b8ad66\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\",\"id\":456,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/pivotallid.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"9579c37\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/04\\/accounting-cornerstone-1-copy.webp\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/accountingcornerstone.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"230e833\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/Pianoonbeach-1.jpeg\",\"id\":452,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/markpianoman.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a882be7\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/10-essentials-1-768x1024-1.jpeg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_image_cell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"premium_gallery_image_vcell\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},{\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\",\"id\":925,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"premium_gallery_img_link\":{\"url\":\"https:\\/\\/www.fitcfo.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d21652e\"},{\"_id\":\"60d9b8e\",\"premium_gallery_img\":{\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-img-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e02ee23\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"394\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2023\\/01\\/bg-2.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=16356db\",\"background_color\":\"globals\\/colors?id=secondary\"},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[],\"pa_badge_text\":\"New\",\"pa_cursor_ftext\":\"Premium Follow Text\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"40460ad2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9be98e4\",\"border_color\":\"globals\\/colors?id=6fc639b\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5aeaa30\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"Name\",\"dynamic\":{\"active\":true},\"_id\":\"364cf30\",\"required\":\"true\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"_id\":\"f31ff13\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"placeholder\":\"Message\",\"_id\":\"4e5acd1\",\"required\":\"true\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"helloben@latitude39creative.com\",\"email_subject\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@latitude39creative.com\",\"email_from_name\":\"Latitude 39 Creative\",\"email_to_2\":\"latitude39creative@gmail.com\",\"email_subject_2\":\"New message from &quot;Latitude 39 Creative&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@latitude39creative.com\",\"email_from_name_2\":\"Latitude 39 Creative\",\"email_reply_to_2\":\"latitude39creative@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF00\",\"pa_condition_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"field_text_color\":\"globals\\/colors?id=primary\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"536aebda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"32eaf23c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Get In {{Touch}}. \",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"TESTIMONIALS\",\"ekit_heading_sub_title_position\":\"before_title\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.<\\/p>\",\"desciption_width\":{\"unit\":\"em\",\"size\":10,\"sizes\":[]},\"shadow_text_content\":\"bussiness\",\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_color\":\"#F9F9F9\",\"ekit_heading_focused_title_color\":\"#5CD2B9\",\"ekit_heading_sub_title_color\":\"#5CD2B9\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_seperator_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"ekit_heading_seperator_color\":\"#5CD2B9\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_typography_typography\":\"\",\"ekit_heading_sub_title_color\":\"globals\\/colors?id=6fc639b\",\"ekit_heading_sub_title_typography_typography\":\"globals\\/typography?id=a61baf2\",\"ekit_heading_seperator_color\":\"\",\"ekit_heading_focused_title_typography_typography\":\"\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\"},\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_tag\":\"h5\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/xjk.anj.mybluehost.me\\/.website_ec4bb7ac\\/wp-content\\/uploads\\/2022\\/11\\/placeholder.png\"},\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"d3da867\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Office Address\",\"description_text\":\"Denver, Colorado\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5b006f18\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"303.472.5618\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a355d51\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"Email Us\",\"description_text\":\"helloben@latitude39creative.com\",\"hover_animation\":\"float\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"title_size\":\"h4\",\"primary_color\":\"#5CD2B9\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_align_mobile\":\"center\",\"position\":\"left\",\"pa_condition_repeater\":[],\"premium_mscroll_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"mailto:helloben@latitude39creative.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO 7ja_postmeta VALUES("9553","1021","_elementor_page_assets","a:2:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}s:7:\"scripts\";a:1:{i:0;s:8:\"e-sticky\";}}");
INSERT INTO 7ja_postmeta VALUES("9554","1021","_elementor_import_session_id","636ee7abc8d7c");
INSERT INTO 7ja_postmeta VALUES("9555","1021","_elementor_page_settings","a:1:{s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}");
INSERT INTO 7ja_postmeta VALUES("9556","1021","_thumbnail_id","378");
INSERT INTO 7ja_postmeta VALUES("9558","103","_elementor_controls_usage","a:10:{s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:26:\"ekit_heading_section_title\";a:4:{s:18:\"ekit_heading_title\";i:4;s:17:\"show_title_border\";i:1;s:16:\"title_float_left\";i:1;s:22:\"ekit_heading_title_tag\";i:3;}s:29:\"ekit_heading_section_subtitle\";a:4:{s:27:\"ekit_heading_sub_title_show\";i:4;s:22:\"ekit_heading_sub_title\";i:4;s:31:\"ekit_heading_sub_title_position\";i:4;s:26:\"ekit_heading_sub_title_tag\";i:4;}s:32:\"ekit_heading_section_extra_title\";a:3:{s:37:\"ekit_heading_section_extra_title_show\";i:4;s:24:\"ekit_heading_extra_title\";i:4;s:16:\"desciption_width\";i:4;}s:30:\"ekit_heading_section_seperator\";a:3:{s:28:\"ekit_heading_seperator_style\";i:4;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:4;}}s:5:\"style\";a:5:{s:32:\"ekit_heading_section_title_style\";a:6:{s:24:\"ekit_heading_title_color\";i:4;s:40:\"ekit_heading_title_typography_typography\";i:3;s:41:\"ekit_heading_title_typography_font_family\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:3;s:41:\"ekit_heading_title_typography_font_weight\";i:2;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:8:{s:32:\"ekit_heading_focused_title_color\";i:2;s:33:\"ekit_heading_use_focused_title_bg\";i:1;s:38:\"ekit_heading_focused_title_color_hover\";i:1;s:48:\"ekit_heading_focused_title_typography_typography\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:40:\"ekit_heading_title_text_decoration_color\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_color\";i:1;s:48:\"ekit_heading_focus_title_shadow_text_shadow_type\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:7:{s:36:\"ekit_heading_use_sub_title_text_fill\";i:4;s:28:\"ekit_heading_sub_title_color\";i:4;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:2:{s:29:\"ekit_heading_seperator_height\";i:4;s:28:\"ekit_heading_seperator_color\";i:3;}s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:4;s:18:\"animation_duration\";i:4;s:6:\"sticky\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:9;s:21:\"space_between_widgets\";i:4;s:16:\"content_position\";i:4;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:8;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_ypos\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:19:\"background_bg_width\";i:1;s:15:\"background_size\";i:2;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:2;s:26:\"background_overlay_opacity\";i:2;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;}}}}s:17:\"elementskit-video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:32:\"ekit_video_popup_content_section\";a:6:{s:27:\"ekit_video_popup_video_type\";i:1;s:28:\"ekit_video_self_external_url\";i:1;s:29:\"ekit_video_player_self_hosted\";i:1;s:26:\"ekit_video_popup_auto_play\";i:1;s:27:\"ekit_video_popup_video_mute\";i:1;s:17:\"self_poster_image\";i:1;}}s:5:\"style\";a:1:{s:30:\"ekit_video_popup_section_style\";a:3:{s:26:\"ekit_video_popup_icon_size\";i:1;s:40:\"ekit_video_popup_btn_bg_color_background\";i:1;s:35:\"ekit_video_popup_btn_bg_color_image\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:18:\"pp-image-accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_items\";a:1:{s:15:\"accordion_items\";i:1;}}}}s:19:\"premium-img-gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:23:\"premium_gallery_general\";a:3:{s:31:\"premium_gallery_img_size_select\";i:1;s:14:\"thumbnail_size\";i:1;s:29:\"premium_gallery_column_number\";i:1;}s:20:\"premium_gallery_cats\";a:2:{s:22:\"premium_gallery_filter\";i:1;s:28:\"premium_gallery_cats_content\";i:1;}s:23:\"premium_gallery_content\";a:1:{s:27:\"premium_gallery_img_content\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:1:{s:11:\"form_fields\";i:1;}s:13:\"section_email\";a:1:{s:8:\"email_to\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_field_style\";a:1:{s:22:\"field_background_color\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"link\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:15:\"hover_animation\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;}s:17:\"section_style_box\";a:4:{s:10:\"icon_space\";i:3;s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:7:{s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:34:\"description_typography_font_family\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;}}}}}");
INSERT INTO 7ja_postmeta VALUES("9599","9","_elementor_css","a:6:{s:4:\"time\";i:1714503799;s:5:\"fonts\";a:2:{i:0;s:12:\"Varela Round\";i:1;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9600","169","_elementor_css","a:6:{s:4:\"time\";i:1714503800;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:2;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";i:4;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9601","601","_elementor_css","a:6:{s:4:\"time\";i:1714503801;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"3fc07024\";i:1;s:8:\"3fc07024\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9602","715","_elementor_css","a:6:{s:4:\"time\";i:1714503801;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";i:3;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:8:\"5d252b78\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9603","147","_elementor_css","a:6:{s:4:\"time\";i:1714504110;s:5:\"fonts\";a:2:{i:0;s:9:\"Work Sans\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9604","11","_elementor_css","a:6:{s:4:\"time\";i:1714504172;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"1536f17\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9605","131","_elementor_css","a:6:{s:4:\"time\";i:1714504300;s:5:\"fonts\";a:3:{i:0;s:9:\"Work Sans\";i:1;s:6:\"Roboto\";i:2;s:7:\"Poppins\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:4:{i:0;s:7:\"efc4ff2\";i:1;s:8:\"2c92a963\";i:2;s:8:\"5abcc645\";i:3;s:8:\"34cbbb7b\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9606","18","_elementor_css","a:6:{s:4:\"time\";i:1714504300;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"356f575\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9607","103","_elementor_css","a:6:{s:4:\"time\";i:1714504303;s:5:\"fonts\";a:1:{i:0;s:9:\"Work Sans\";}s:5:\"icons\";a:3:{i:0;s:9:\"ekiticons\";i:1;s:8:\"fa-solid\";i:8;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9608","31","_elementor_css","a:6:{s:4:\"time\";i:1714504306;s:5:\"fonts\";a:2:{i:0;s:9:\"Work Sans\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9609","75","_elementor_css","a:7:{s:4:\"time\";i:1714520852;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;s:0:\"\";s:3:\"css\";s:0:\"\";}");
INSERT INTO 7ja_postmeta VALUES("9610","319","_elementor_css","a:7:{s:4:\"time\";i:1714520852;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;s:0:\"\";s:3:\"css\";s:0:\"\";}");



DROP TABLE IF EXISTS 7ja_posts;

CREATE TABLE `7ja_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=1022 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_posts VALUES("3","1","2022-11-11 00:17:24","2022-11-11 00:17:24","<!-- wp:heading -->\n<h2>Who we are</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: Latitude39creative.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Comments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Embedded content from other websites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Who we share your data with</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>How long we retain your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>What rights you have over your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Where your data is sent</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->","Privacy Policy","","publish","closed","open","","privacy-policy","","","2022-12-08 22:27:22","2022-12-08 22:27:22","","0","http://box2000/cgi/addon_GT.cgi?s=GT::WP::Install::EIG+%28kaktuscr%29+-+10.0.87.66+%5BWordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+589%3b+Hosting::gap_call%5D/?page_id=3","0","page","","0");
INSERT INTO 7ja_posts VALUES("4","1","2022-11-11 15:22:45","2022-11-11 15:22:45","{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }","Custom Styles","","publish","closed","closed","","wp-global-styles-twentytwentythree","","","2022-11-11 15:22:45","2022-11-11 15:22:45","","0","https://latitude39creative.com/wp-global-styles-twentytwentythree/","0","wp_global_styles","","0");
INSERT INTO 7ja_posts VALUES("6","1","2022-11-11 15:23:55","2022-11-11 15:23:55","","Default Kit","","publish","closed","closed","","default-kit","","","2022-11-11 15:23:55","2022-11-11 15:23:55","","0","https://latitude39creative.com/?p=6","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("9","1","2022-11-12 00:24:22","2022-11-12 00:24:22","","Digital Marketing Agency","","publish","closed","closed","","digital-marketing-agency","","","2023-01-27 15:37:12","2023-01-27 15:37:12","","0","https://latitude39creative.com/?elementor_library=digital-marketing-agency","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("10","1","2022-11-12 00:24:23","2022-11-12 00:24:23","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-12 00:24:23","2022-11-12 00:24:23","","9","https://latitude39creative.com/?p=10","0","revision","","0");
INSERT INTO 7ja_posts VALUES("11","1","2022-11-12 00:24:23","2022-11-12 00:24:23","<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ooops.</h2>		\n			<h2> I Think You Got Lost.</h2>		\n			<h2>The Page You Were Looking For Couldn\'t Be Found.</h2>		\n			<a role=\"button\">\n						back to home page\n					</a>","404 Page","","publish","closed","closed","","404-page","","","2023-01-27 15:08:17","2023-01-27 15:08:17","","0","https://latitude39creative.com/?elementor_library=404-page","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("16","1","2022-11-12 00:24:28","2022-11-12 00:24:28","","404.png","","inherit","open","closed","","404-png","","","2022-11-12 00:24:28","2022-11-12 00:24:28","","0","https://latitude39creative.com/wp-content/uploads/2022/11/404.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("17","1","2022-11-12 00:24:29","2022-11-12 00:24:29","","404 Page","","inherit","closed","closed","","11-revision-v1","","","2022-11-12 00:24:29","2022-11-12 00:24:29","","11","https://latitude39creative.com/?p=17","0","revision","","0");
INSERT INTO 7ja_posts VALUES("18","1","2022-11-12 00:24:29","2022-11-12 00:24:29","<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","publish","closed","closed","","contact-popup","","","2024-04-16 15:19:45","2024-04-16 15:19:45","","0","https://latitude39creative.com/?elementor_library=contact-popup","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("20","1","2022-11-12 00:24:31","2022-11-12 00:24:31","","bubble_bg_popup.png","","inherit","open","closed","","bubble_bg_popup-png","","","2022-11-12 00:24:31","2022-11-12 00:24:31","","0","https://latitude39creative.com/wp-content/uploads/2022/11/bubble_bg_popup.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("24","1","2022-11-12 00:24:36","2022-11-12 00:24:36","<h1> Blog</h1>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h1> Share This Post</h1>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>More To Explore</h2>","Single Post","","publish","closed","closed","","single-post","","","2023-02-15 04:12:18","2023-02-15 04:12:18","","0","https://latitude39creative.com/?elementor_library=single-post","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("25","1","2022-11-12 00:24:37","2022-11-12 00:24:37","","Post-BG.png","","inherit","open","closed","","post-bg-png","","","2022-11-12 00:24:37","2022-11-12 00:24:37","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Post-BG.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("27","1","2022-11-12 00:24:39","2022-11-12 00:24:39","","BG-Post-Sub.png","","inherit","open","closed","","bg-post-sub-png","","","2022-11-12 00:24:39","2022-11-12 00:24:39","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Post-Sub.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("29","1","2022-11-12 00:24:41","2022-11-12 00:24:41","","CTA-Shapes.png","","inherit","open","closed","","cta-shapes-png","","","2022-11-12 00:24:41","2022-11-12 00:24:41","","0","https://latitude39creative.com/wp-content/uploads/2022/11/CTA-Shapes.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("30","1","2022-11-12 00:24:41","2022-11-12 00:24:41","","Single Post","","inherit","closed","closed","","24-revision-v1","","","2022-11-12 00:24:41","2022-11-12 00:24:41","","24","https://latitude39creative.com/?p=30","0","revision","","0");
INSERT INTO 7ja_posts VALUES("31","1","2022-11-12 00:24:41","2022-11-12 00:24:41","<h2>Blog</h2>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","publish","closed","closed","","posts-archive","","","2023-02-15 18:55:34","2023-02-15 18:55:34","","0","https://latitude39creative.com/?elementor_library=posts-archive","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("32","1","2022-11-12 00:24:42","2022-11-12 00:24:42","","News-Hero-Bg.png","","inherit","open","closed","","news-hero-bg-png","","","2022-11-12 00:24:42","2022-11-12 00:24:42","","0","https://latitude39creative.com/wp-content/uploads/2022/11/News-Hero-Bg.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("34","1","2022-11-12 00:24:44","2022-11-12 00:24:44","","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2022-11-12 00:24:44","2022-11-12 00:24:44","","31","https://latitude39creative.com/?p=34","0","revision","","0");
INSERT INTO 7ja_posts VALUES("63","2","2023-11-14 01:18:47","2023-11-14 01:18:47","\n\n\n\n\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is SEO?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO, or Search Engine Optimization, is a set of practices aimed at improving a website\'s visibility and ranking in search engine results pages (SERPs). The primary goal of SEO is to increase organic (non-paid) traffic to a website by optimizing various elements, both on the website itself (on-page SEO) and outside the website (off-page SEO).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">Here are some key aspects of SEO:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Keyword Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Identifying and using relevant keywords in the content, meta tags, and other elements to match user search queries.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Content Quality:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating high-quality, valuable, and relevant content that satisfies user intent and provides useful information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>On-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing elements on the website, including title tags, meta descriptions, header tags, URL structure, and internal linking.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Off-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Building a reputable online presence through activities such as link building, social media engagement, and influencer outreach.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Technical SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensuring the website is technically sound and accessible to search engines. This includes optimizing page speed, implementing schema markup, and having a mobile-friendly design.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>User Experience (UX):</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating a positive user experience to encourage visitors to stay on the site, engage with content, and reduce bounce rates.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Local SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing a website to appear in local search results, is particularly important for businesses serving a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Analytics and Monitoring:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Using tools like Google Analytics and Google Search Console to track website performance, monitor traffic, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is dynamic and evolves as search engine algorithms change. It requires ongoing efforts to adapt to these changes, stay updated with best practices, and maintain or improve search rankings. While paid advertising can generate quick results, SEO focuses on long-term, sustainable strategies to increase a website\'s visibility and attract organic traffic. That\'s where <a href=\"http://Latitude39creative.com\">Latitude39creative</a> comes in.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>How Does SEO Work?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO works through a combination of on-page, off-page, and technical strategies aimed at optimizing a website to improve its visibility and ranking on search engine results pages (SERPs). Here\'s a breakdown of how SEO works:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">1. <strong>Keyword Research:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO starts with identifying relevant keywords related to your content, products, or services. This involves understanding what terms your target audience is likely to use when searching for information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">2. <strong>On-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Content Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create high-quality, relevant, and engaging content that incorporates the identified keywords naturally.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\">Use header tags, meta titles, and meta descriptions to provide structure and information to search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>URL Structure:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Develop SEO-friendly URLs that include keywords and provide a clear structure for both users and search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Internal Linking:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Link relevant pages within your website to improve navigation and distribute link equity.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Mobile Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website is responsive and provides a good user experience on mobile devices.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">3. <strong>Off-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Link Building:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Acquire high-quality backlinks from reputable websites. Quality and relevance are crucial in link building.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Social Signals:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Maintain an active presence on social media platforms, as social signals can indirectly impact search rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Online Reputation Management:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Encourage positive online reviews and manage your online reputation.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">4. <strong>Technical SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Page Speed Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website\'s loading speed to improve user experience and meet search engine standards.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>XML Sitemaps:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create and submit XML sitemaps to help search engines understand the structure of your website.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>SSL Certificates:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website has an SSL certificate for a secure connection.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Schema Markup:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Implement schema markup to provide search engines with more information about your content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">5. <strong>User Experience (UX):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create a positive user experience by making your website easy to navigate, ensuring fast load times, and delivering valuable content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">6. <strong>Analytics and Monitoring:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Use tools like Google Analytics and Google Search Console to monitor website performance, track user behavior, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">7. <strong>Content Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Regularly update and add new content to keep your website fresh and relevant.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">8. <strong>Algorithm Changes and Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Stay informed about changes in search engine algorithms and adjust your strategy accordingly.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">9. <strong>Local SEO (if applicable):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website for local search if you have a physical presence or serve a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">10. <strong>Continuous Optimization:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO is an ongoing process. Regularly audit your website, analyze performance data, and adapt your strategy based on results and industry trends.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">By implementing these strategies, SEO aims to provide the best possible answer to a user\'s search, making your website more visible and relevant in search engine results. Keep in mind that SEO is a long-term strategy, and results may take time to become evident.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Does SEO REALLY matter?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is crucial for several reasons, and its importance has grown significantly as the internet has become an integral part of people\'s lives. Here are key reasons why SEO is important:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Increased Visibility and Traffic:</strong></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO helps improve a website\'s visibility in search engine results. When your site ranks higher, it\'s more likely to be seen by users, resulting in increased organic traffic.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     2. <strong>Credibility and Trust:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Websites that appear at the top of search results are often perceived as more credible and trustworthy by users. Establishing a strong online presence through SEO contributes to building trust with your audience.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     3. <strong>Better User Experience:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO isn\'t just about search engines; it\'s also about enhancing the user experience. By optimizing for both search engines and users, you create a more seamless, intuitive, and enjoyable experience for visitors.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     4. <strong>Cost-Effective Marketing:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Compared to paid advertising, SEO is a cost-effective way to attract organic traffic. While it requires time and effort, the long-term benefits often outweigh the costs associated with other marketing channels.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     5. <strong>Higher Conversion Rates:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Users who find your website through organic search are often actively looking for information, products, or services. This targeted traffic is more likely to convert into leads or customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     6. <strong>Adaptation to Changing Trends:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO encourages staying updated with industry trends and changes in search engine algorithms. This adaptability is crucial for maintaining and improving search rankings over time.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     7. <strong>Local Business Visibility:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">For local businesses, local SEO is essential for appearing in local search results. This is particularly important for attracting nearby customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     8. <strong>Insights into Customer Behavior:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO tools and analytics provide valuable data about user behavior, preferences, and the effectiveness of your strategies. This information can inform decision-making and future optimization efforts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     9. <strong>Competitive Advantage:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">If your competitors are investing in SEO and you\'re not, you risk losing potential customers to them. Conversely, effective SEO can help you outperform competitors in search engine rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     10. <strong>Global Reach:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO enables businesses to reach a global audience. Even small businesses can compete on a larger scale by optimizing their online presence for international search.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">In summary, SEO is not just about improving search rankings; it\'s a holistic approach to creating a user-friendly, credible, and visible online presence. By investing in SEO, businesses can strengthen their digital footprint and connect with their target audience in a more meaningful way. <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Contact Us</a> to see how we can help you with your SEO.</p>\n<!-- /wp:paragraph -->","What is SEO, how does it work, and does it really matter?","What is SEO? Does it work... Do I really need it?","publish","open","open","","case-study-how-to-improve-seo-scores","","","2023-11-14 01:18:52","2023-11-14 01:18:52","","0","https://latitude39creative.com/case-study-how-to-improve-seo-scores/","0","post","","0");
INSERT INTO 7ja_posts VALUES("64","1","2022-11-12 00:24:59","2022-11-12 00:24:59","","Case Study: How to improve SEO scores","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","63-revision-v1","","","2022-11-12 00:24:59","2022-11-12 00:24:59","","63","https://latitude39creative.com/?p=64","0","revision","","0");
INSERT INTO 7ja_posts VALUES("65","1","2022-11-12 00:24:59","2022-11-12 00:24:59","","Case Study: How to improve SEO scores","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","63-revision-v1","","","2022-11-12 00:24:59","2022-11-12 00:24:59","","63","https://latitude39creative.com/?p=65","0","revision","","0");
INSERT INTO 7ja_posts VALUES("75","2","2023-08-01 21:38:05","2023-08-01 21:38:05","<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.</p>\n<p>1.  Recognition and Recall:</p>\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.</p>\n<p>2. Building Trust and Credibility:</p>\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.</p>\n<p>3.  Customer Loyalty:</p>\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.</p>\n<p>4. <strong>Competitive Advantage:</strong></p>\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.</p>\n<p>5.  <strong>Employee Morale and Pride:</strong></p>\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.</p>\n<p>6. <strong>Brand Extension and Diversification:</strong></p>\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.</p>\n<p>7. <strong>Price Premium:</strong></p>\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.</p>\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>","What\'s in a Brand?","In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever.","publish","open","open","","whats-in-a-brand","","","2023-08-01 21:44:20","2023-08-01 21:44:20","","0","https://latitude39creative.com/what-will-be-the-future-post-facebook/","0","post","","0");
INSERT INTO 7ja_posts VALUES("80","1","2022-11-12 00:25:06","2022-11-12 00:25:06","","BG-Social-Media.png","","inherit","open","closed","","bg-social-media-png","","","2022-11-12 00:25:06","2022-11-12 00:25:06","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Social-Media.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("82","1","2022-11-12 00:25:09","2022-11-12 00:25:09","","BG-Service-one.png","","inherit","open","closed","","bg-service-one-png","","","2022-11-12 00:25:09","2022-11-12 00:25:09","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Service-one.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("85","1","2022-11-12 00:25:12","2022-11-12 00:25:12","","BG-Join-Clients.png","","inherit","open","closed","","bg-join-clients-png","","","2022-11-12 00:25:12","2022-11-12 00:25:12","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Join-Clients.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("86","1","2022-11-12 00:25:14","2022-11-12 00:25:14","","Social-media.svg","","inherit","open","closed","","social-media-svg","","","2022-11-12 00:25:14","2022-11-12 00:25:14","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Social-media.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("87","1","2022-11-12 00:25:20","2022-11-12 00:25:20","","SEO.svg","","inherit","open","closed","","seo-svg","","","2022-11-12 00:25:20","2022-11-12 00:25:20","","0","https://latitude39creative.com/wp-content/uploads/2022/11/SEO.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("88","1","2022-11-12 00:25:25","2022-11-12 00:25:25","","PPC.svg","","inherit","open","closed","","ppc-svg","","","2022-11-12 00:25:25","2022-11-12 00:25:25","","0","https://latitude39creative.com/wp-content/uploads/2022/11/PPC.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("89","1","2022-11-12 00:25:31","2022-11-12 00:25:31","","BG-more-Services.png","","inherit","open","closed","","bg-more-services-png","","","2022-11-12 00:25:31","2022-11-12 00:25:31","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-more-Services.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("94","1","2022-11-12 00:25:35","2022-11-12 00:25:35","","BG-contact-hero-New.png","","inherit","open","closed","","bg-contact-hero-new-png","","","2022-11-12 00:25:35","2022-11-12 00:25:35","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-contact-hero-New.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("95","1","2022-11-12 00:25:36","2022-11-12 00:25:36","","BG-Form-Contact-Us.png","","inherit","open","closed","","bg-form-contact-us-png","","","2022-11-12 00:25:36","2022-11-12 00:25:36","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Form-Contact-Us.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("96","1","2022-11-12 00:25:37","2022-11-12 00:25:37","","iphone.svg","","inherit","open","closed","","iphone-svg","","","2022-11-12 00:25:37","2022-11-12 00:25:37","","0","https://latitude39creative.com/wp-content/uploads/2022/11/iphone.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("97","1","2022-11-12 00:25:42","2022-11-12 00:25:42","","Location.svg","","inherit","open","closed","","location-svg","","","2022-11-12 00:25:42","2022-11-12 00:25:42","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Location.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("98","1","2022-11-12 00:25:48","2022-11-12 00:25:48","","Mail.svg","","inherit","open","closed","","mail-svg","","","2022-11-12 00:25:48","2022-11-12 00:25:48","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Mail.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("99","1","2022-11-12 00:25:54","2022-11-12 00:25:54","","BG-contact-info.png","","inherit","open","closed","","bg-contact-info-png","","","2022-11-12 00:25:54","2022-11-12 00:25:54","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-contact-info.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("103","1","2022-11-12 00:25:55","2022-11-12 00:25:55","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:helloben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:helloben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						helloben@latitude39creative.com					</p>","Current Projects","","publish","closed","closed","","clients","","","2024-04-16 15:56:30","2024-04-16 15:56:30","","0","https://latitude39creative.com/clients/","0","page","","0");
INSERT INTO 7ja_posts VALUES("104","1","2022-11-12 00:25:57","2022-11-12 00:25:57","","Clients-BG-hero-new.png","","inherit","open","closed","","clients-bg-hero-new-png","","","2022-11-12 00:25:57","2022-11-12 00:25:57","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Clients-BG-hero-new.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("121","1","2022-11-12 00:26:06","2022-11-12 00:26:06","","BG-Clients-new.png","","inherit","open","closed","","bg-clients-new-png","","","2022-11-12 00:26:06","2022-11-12 00:26:06","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Clients-new.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("127","1","2022-11-12 00:26:12","2022-11-12 00:26:12","","Bg-Testimonials-2.png","","inherit","open","closed","","bg-testimonials-2-png","","","2022-11-12 00:26:12","2022-11-12 00:26:12","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-Testimonials-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("131","1","2022-11-12 00:26:12","2022-11-12 00:26:12","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding/Consultation Meetings								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","publish","closed","closed","","services","","","2024-04-16 15:37:04","2024-04-16 15:37:04","","0","https://latitude39creative.com/services/","0","page","","0");
INSERT INTO 7ja_posts VALUES("132","1","2022-11-12 00:26:13","2022-11-12 00:26:13","","Bg-Services-Hero-New.png","","inherit","open","closed","","bg-services-hero-new-png","","","2022-11-12 00:26:13","2022-11-12 00:26:13","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-Services-Hero-New.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("133","1","2022-11-12 00:26:14","2022-11-12 00:26:14","","Digital-Consulting.svg","","inherit","open","closed","","digital-consulting-svg","","","2022-11-12 00:26:14","2022-11-12 00:26:14","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Digital-Consulting.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("134","1","2022-11-12 00:26:20","2022-11-12 00:26:20","","Web-Design.svg","","inherit","open","closed","","web-design-svg","","","2022-11-12 00:26:20","2022-11-12 00:26:20","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Web-Design.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("135","1","2022-11-12 00:26:26","2022-11-12 00:26:26","","content-marketing.svg","","inherit","open","closed","","content-marketing-svg","","","2022-11-12 00:26:26","2022-11-12 00:26:26","","0","https://latitude39creative.com/wp-content/uploads/2022/11/content-marketing.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("136","1","2022-11-12 00:26:31","2022-11-12 00:26:31","","Branding.svg","","inherit","open","closed","","branding-svg","","","2022-11-12 00:26:31","2022-11-12 00:26:31","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Branding.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("137","1","2022-11-12 00:26:37","2022-11-12 00:26:37","","Research.svg","","inherit","open","closed","","research-svg","","","2022-11-12 00:26:37","2022-11-12 00:26:37","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Research.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("138","1","2022-11-12 00:26:42","2022-11-12 00:26:42","","Strategy.svg","","inherit","open","closed","","strategy-svg","","","2022-11-12 00:26:42","2022-11-12 00:26:42","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Strategy.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts VALUES("139","1","2022-11-12 00:26:48","2022-11-12 00:26:48","","Bg-Services.png","","inherit","open","closed","","bg-services-png","","","2022-11-12 00:26:48","2022-11-12 00:26:48","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-Services.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("142","1","2022-11-12 00:26:59","2022-11-12 00:26:59","","Bg-more-about-the-services.png","","inherit","open","closed","","bg-more-about-the-services-png","","","2022-11-12 00:26:59","2022-11-12 00:26:59","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-more-about-the-services.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("143","1","2022-11-12 00:27:01","2022-11-12 00:27:01","","BG-FAQ-Services.png","","inherit","open","closed","","bg-faq-services-png","","","2022-11-12 00:27:01","2022-11-12 00:27:01","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-FAQ-Services.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("147","1","2022-11-12 00:27:02","2022-11-12 00:27:02","<h2>About</h2>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get, the more real your business will become.</h5><h5>This will help us create a step-by-step plan that will make that future an actual reality.</h5>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","publish","closed","closed","","about","","","2023-11-14 00:17:09","2023-11-14 00:17:09","","0","https://latitude39creative.com/about/","0","page","","0");
INSERT INTO 7ja_posts VALUES("148","1","2022-11-12 00:27:04","2022-11-12 00:27:04","","Bg-About-New.png","","inherit","open","closed","","bg-about-new-png","","","2022-11-12 00:27:04","2022-11-12 00:27:04","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-About-New.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("150","1","2022-11-12 00:27:06","2022-11-12 00:27:06","","BG-intro-About.png","","inherit","open","closed","","bg-intro-about-png","","","2022-11-12 00:27:06","2022-11-12 00:27:06","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-intro-About.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("151","1","2022-11-12 00:27:08","2022-11-12 00:27:08","","We-believe-BG.png","","inherit","open","closed","","we-believe-bg-png","","","2022-11-12 00:27:08","2022-11-12 00:27:08","","0","https://latitude39creative.com/wp-content/uploads/2022/11/We-believe-BG.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("161","1","2022-11-12 00:27:18","2022-11-12 00:27:18","","BG-About-Team-section.png","","inherit","open","closed","","bg-about-team-section-png","","","2022-11-12 00:27:18","2022-11-12 00:27:18","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-About-Team-section.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("169","1","2022-11-12 00:27:28","2022-11-12 00:27:28","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://wpmet.com/plugin/elementskit/wp-content/uploads/2022/11/selfhosted_video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","publish","closed","closed","","home","","","2024-04-16 15:37:51","2024-04-16 15:37:51","","0","https://latitude39creative.com/home/","0","page","","0");
INSERT INTO 7ja_posts VALUES("171","1","2022-11-12 00:27:30","2022-11-12 00:27:30","","BG-HomePage-High.png","","inherit","open","closed","","bg-homepage-high-png","","","2022-11-12 00:27:30","2022-11-12 00:27:30","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-HomePage-High.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("173","1","2022-11-12 00:27:33","2022-11-12 00:27:33","","BG-home-new4.png","","inherit","open","closed","","bg-home-new4-png","","","2022-11-12 00:27:33","2022-11-12 00:27:33","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-home-new4.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("174","1","2022-11-12 00:27:34","2022-11-12 00:27:34","","Shapes-icons.png","","inherit","open","closed","","shapes-icons-png","","","2022-11-12 00:27:34","2022-11-12 00:27:34","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Shapes-icons.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("175","1","2022-11-12 00:27:36","2022-11-12 00:27:36","","BG-TEAN-Home.png","","inherit","open","closed","","bg-tean-home-png","","","2022-11-12 00:27:36","2022-11-12 00:27:36","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-TEAN-Home.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("176","1","2022-11-12 00:27:37","2022-11-12 00:27:37","","BG-Testemonials-home-page.png","","inherit","open","closed","","bg-testemonials-home-page-png","","","2022-11-12 00:27:37","2022-11-12 00:27:37","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Testemonials-home-page.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("189","1","2022-12-08 22:33:34","2022-11-12 00:27:51"," ","","","publish","closed","closed","","189","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/","2","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("190","1","2022-12-08 22:33:34","2022-11-12 00:27:51"," ","","","publish","closed","closed","","190","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/","4","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("192","1","2022-12-08 22:33:34","2022-11-12 00:27:51"," ","","","publish","closed","closed","","192","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/","1","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("193","1","2022-12-08 22:33:34","2022-11-12 00:27:51"," ","","","publish","closed","closed","","193","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/","3","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("195","1","2022-11-12 00:27:51","2022-11-12 00:27:51","<style>/*! elementor - v3.8.0 - 30-10-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"155\" height=\"140\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Oval.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"198\" height=\"190\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Fill-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"99\" height=\"99\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Oval-Copy.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.8.0 - 30-10-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ooops.</h2>		\n			<h2> I Think You Got Lost Between The Shapes.</h2>		\n			<h2>The Page You Were Looking For Couldn\'t Be Found.</h2>		\n			<a role=\"button\">\n						back to home page\n					</a>","404 Page","","inherit","closed","closed","","11-revision-v1","","","2022-11-12 00:27:51","2022-11-12 00:27:51","","11","https://latitude39creative.com/?p=195","0","revision","","0");
INSERT INTO 7ja_posts VALUES("197","1","2022-11-12 00:27:52","2022-11-12 00:27:52","<style>/*! elementor - v3.8.0 - 30-10-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-negative:0;flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>Share This Post</h2>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<h2>Subscribe To Our Newsletter</h2>		\n			<h3>Get updates and learn from the best</h3>		\n			<h2>More To Explore</h2>		\n			<h4>Do You Want To Boost Your Business?</h4>		\n			<h2>drop us a line and keep in touch</h2>		\n			<a href=\"https://library.elementor.com/marketing-digital-agency/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"539\" height=\"539\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/CTA-post.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?w=539&amp;ssl=1 539w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 539px) 100vw, 539px\" />","Single Post","","inherit","closed","closed","","24-revision-v1","","","2022-11-12 00:27:52","2022-11-12 00:27:52","","24","https://latitude39creative.com/?p=197","0","revision","","0");
INSERT INTO 7ja_posts VALUES("198","1","2022-11-12 00:27:52","2022-11-12 00:27:52","<h3>Take a break and read all about it</h3>		\n			<h4>Do You Want To Boost Your Business?</h4>		\n			<h2>drop us a line and keep in touch</h2>		\n			<a href=\"https://library.elementor.com/marketing-digital-agency/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"539\" height=\"539\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/CTA-News.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-News.png?w=539&amp;ssl=1 539w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-News.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-News.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 539px) 100vw, 539px\" />","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2022-11-12 00:27:52","2022-11-12 00:27:52","","31","https://latitude39creative.com/?p=198","0","revision","","0");
INSERT INTO 7ja_posts VALUES("206","1","2022-11-12 00:27:58","2022-11-12 00:27:58","<p><!-- wp:paragraph --></p>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl. Mauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Nulla euismod a mi eu elementum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet velit gravida tempor et quis mauris. Vestibulum fermentum est nulla, a accumsan libero ultrices nec.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Etiam erat quam, pellentesque in maximus vitae, sollicitudin sed dui. Fusce blandit turpis nec aliquam pharetra. Suspendisse imperdiet molestie imperdiet. Pellentesque imperdiet magna tincidunt, ultricies tellus at, aliquet sapien.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p><strong>Class aptent taciti socios<br></strong>Lkad litora torquent per conubia nostra, per inceptos himenaeos. Praesent ut libero a ipsum aliquam accumsan. Maecenas ut arcu in justo euismod auctor. Donec facilisis efficitur ante a suscipit. Mauris maximus eu odio ac euismod. Maecenas faucibus turpis sed posuere volutpat. Sed tincidunt luctus massa ac aliquam. Integer tincidunt purus et diam dapibus, a rhoncus magna congue. Ut ut turpis suscipit massa mollis gravida. Proin ut dui in libero aliquet semper.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p><strong>Morbi a felis sapien</strong><br>bibendum hendrerit elit, vitae posuere sem pharetra nec. Morbi suscipit suscipit luctus. Morbi posuere augue eu tristique mollis. Suspendisse fringilla venenatis placerat. Nunc id sapien pretium urna bibendum consectetur. Quisque blandit metus arcu, id ornare magna molestie nec. Proin malesuada a lacus nec mollis. Aliquam pellentesque purus ac nibh pharetra gravida.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Vestibulum quis elit rhoncus, ultricies dolor at, gravida orci. Curabitur ut luctus felis. Sed suscipit ut velit sit amet semper. Donec lorem sem, feugiat eget laoreet in, semper non elit. Ut accumsan lacus eu tellus venenatis tincidunt. Suspendisse at mauris.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Nulla vel ante eu leo rhoncus condimentum vitae et elit. Etiam vitae elementum orci. Aliquam quam turpis, malesuada non ultrices ac, mollis ut dui. Donec eu nisl ut sapien feugiat accumsan ut eget ligula. Phasellus pharetra gravida est id pellentesque. Aliquam erat volutpat. Phasellus venenatis ipsum ac metus sagittis bibendum.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>In sed rutrum magna. Nullam euismod metus ac sagittis viverra. Vivamus posuere vehicula risus a eleifend. Sed vel metus lacus. In hac habitasse platea dictumst. Morbi lacinia fermentum mi eget auctor. Aenean vehicula odio justo, ut gravida ex porttitor eu. Fusce sed blandit mauris, in tempus nisl. Sed rutrum elit non ante rhoncus, vel luctus neque pretium.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p><strong>Cras nec magna nec neque pulvinar commodo.</strong><br>Duis libero mauris, elementum et dui vitae, malesuada egestas nisi. Maecenas dignissim consequat tellus quis dignissim. Ut ac convallis tellus, semper sodales erat. Nam ac nunc blandit, volutpat nunc a, accumsan velit. Praesent tincidunt purus iaculis diam posuere, at condimentum urna imperdiet. Nam sit amet pulvinar massa, id hendrerit ante. Vestibulum tellus tellus, eleifend nec placerat tempus, tincidunt at orci. Morbi mollis, justo aliquam venenatis euismod, diam ante sollicitudin lacus, ac fermentum sapien velit quis magna. Integer rutrum lacinia ullamcorper. Vivamus sit amet bibendum augue, non luctus diam. Cras nisi est, ultricies eget ipsum ut, viverra facilisis tortor.</p>\n<p><!-- /wp:paragraph --></p>","Case Study: How to improve SEO scores","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","63-revision-v1","","","2022-11-12 00:27:58","2022-11-12 00:27:58","","63","https://latitude39creative.com/?p=206","0","revision","","0");
INSERT INTO 7ja_posts VALUES("221","1","2022-11-12 00:45:57","2022-11-12 00:45:57","","Latitude-Logo","","inherit","open","closed","","latitude-logo","","","2022-11-12 00:45:57","2022-11-12 00:45:57","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Latitude-Logo.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts VALUES("223","1","2022-11-12 01:28:39","2022-11-12 01:28:39","","IMG_0885","","inherit","open","closed","","img_0885","","","2022-11-12 01:28:39","2022-11-12 01:28:39","","169","https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("227","1","2022-11-13 00:45:32","2022-11-13 00:45:32","","Nicole","","inherit","open","closed","","nicole","","","2022-11-13 00:45:32","2022-11-13 00:45:32","","169","https://latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("238","1","2022-11-13 00:55:51","2022-11-13 00:55:51","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-13 00:55:51","2022-11-13 00:55:51","","9","https://latitude39creative.com/?p=238","0","revision","","0");
INSERT INTO 7ja_posts VALUES("239","1","2022-11-13 00:55:52","2022-11-13 00:55:52","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-13 00:55:52","2022-11-13 00:55:52","","9","https://latitude39creative.com/?p=239","0","revision","","0");
INSERT INTO 7ja_posts VALUES("240","1","2022-11-13 00:55:52","2022-11-13 00:55:52","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-13 00:55:52","2022-11-13 00:55:52","","9","https://latitude39creative.com/?p=240","0","revision","","0");
INSERT INTO 7ja_posts VALUES("241","1","2022-11-13 00:55:52","2022-11-13 00:55:52","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-13 00:55:52","2022-11-13 00:55:52","","9","https://latitude39creative.com/?p=241","0","revision","","0");
INSERT INTO 7ja_posts VALUES("246","1","2022-11-13 01:18:13","2022-11-13 01:18:13","{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }","Custom Styles","","publish","closed","closed","","wp-global-styles-hello-elementor","","","2022-11-13 01:18:13","2022-11-13 01:18:13","","0","https://latitude39creative.com/wp-global-styles-hello-elementor/","0","wp_global_styles","","0");
INSERT INTO 7ja_posts VALUES("287","1","2022-12-08 17:40:07","2022-12-08 17:40:07","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://latitude39creative.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:helloben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:helloben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						helloben@latitude39creative.com					</p>","Contact","","private","closed","closed","","contact","","","2024-04-16 15:10:42","2024-04-16 15:10:42","","0","https://latitude39creative.com/?page_id=287","0","page","","0");
INSERT INTO 7ja_posts VALUES("294","1","2023-01-30 03:46:03","2022-12-08 17:52:52"," ","","","publish","closed","closed","","294","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=294","1","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("297","1","2023-01-30 03:46:03","2022-12-08 17:52:53"," ","","","publish","closed","closed","","297","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=297","4","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("298","1","2023-01-30 03:46:03","2022-12-08 17:52:53"," ","","","publish","closed","closed","","298","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=298","3","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("312","1","2022-12-08 22:27:18","2022-12-08 22:27:18","<!-- wp:heading -->\n<h2>Who we are</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: Latitude39creative.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Comments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Embedded content from other websites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Who we share your data with</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>How long we retain your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>What rights you have over your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Where your data is sent</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->","Privacy Policy","","inherit","closed","closed","","3-revision-v1","","","2022-12-08 22:27:18","2022-12-08 22:27:18","","3","https://latitude39creative.com/?p=312","0","revision","","0");
INSERT INTO 7ja_posts VALUES("314","1","2023-01-30 03:46:03","2022-12-08 22:28:25"," ","","","publish","closed","closed","","314","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=314","6","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("315","1","2022-12-08 22:32:38","2022-12-08 22:32:38","<h1>Latest Blog</h1>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n\n<label> Your name\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\"> </label>\n\n<label> Your email\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\"> </label>\n\n<label> Subject\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\"> </label>\n\n<label> Your message (optional)\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n\n<input type=\"submit\" value=\"Submit\">\n\n</form>\n<h3>Get In Touch.</h3>\n<h4>\n						Office Address</h4>\nDenver, Colorado\n<h4>\n						Call Us</h4>\n+(827) 123 - 456 - 7891\n<h4>\n						Mail Us</h4>\ninfo@evaniayogastudio.com","Blog","Website ideas and creative inspiration","publish","closed","closed","","blog","","","2023-11-14 00:48:15","2023-11-14 00:48:15","","0","https://latitude39creative.com/?page_id=315","0","page","","0");
INSERT INTO 7ja_posts VALUES("317","1","2022-12-08 22:33:34","2022-12-08 22:33:34"," ","","","publish","closed","closed","","317","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/?p=317","5","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("318","1","2023-01-30 03:46:03","2022-12-08 22:33:57"," ","","","publish","closed","closed","","318","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=318","5","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("319","2","2022-12-14 00:20:11","2022-12-14 00:20:11","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward.&nbsp;</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals.&nbsp;</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","publish","open","open","","feck-perfuction","","","2023-02-15 04:42:21","2023-02-15 04:42:21","","0","https://latitude39creative.com/?p=319","0","post","","0");
INSERT INTO 7ja_posts VALUES("320","1","2022-12-14 00:20:11","2022-12-14 00:20:11","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 00:20:11","2022-12-14 00:20:11","","319","https://latitude39creative.com/?p=320","0","revision","","0");
INSERT INTO 7ja_posts VALUES("321","1","2022-12-14 00:21:28","2022-12-14 00:21:28","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 00:21:28","2022-12-14 00:21:28","","319","https://latitude39creative.com/?p=321","0","revision","","0");
INSERT INTO 7ja_posts VALUES("322","1","2022-12-14 00:21:30","2022-12-14 00:21:30","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 00:21:30","2022-12-14 00:21:30","","319","https://latitude39creative.com/?p=322","0","revision","","0");
INSERT INTO 7ja_posts VALUES("323","1","2022-12-14 00:21:30","2022-12-14 00:21:30","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing. </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure! </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today. </p>\n<!-- /wp:paragraph -->\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 00:21:30","2022-12-14 00:21:30","","319","https://latitude39creative.com/?p=323","0","revision","","0");
INSERT INTO 7ja_posts VALUES("327","1","2022-12-14 00:30:59","2022-12-14 00:30:59","<style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Share This Post</h2>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<h2>Subscribe To Our Newsletter</h2>		\n			<h3>Get updates and learn from the best</h3>		\n			<h2>More To Explore</h2>		\n			<h4>Do You Want To Boost Your Business?</h4>		\n			<h2>drop us a line and keep in touch</h2>		\n			<a role=\"button\">\n						Contact Us\n					</a>\n			<style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"539\" height=\"539\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/CTA-post.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?w=539&amp;ssl=1 539w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 539px) 100vw, 539px\" />","Single Post","","inherit","closed","closed","","24-revision-v1","","","2022-12-14 00:30:59","2022-12-14 00:30:59","","24","https://latitude39creative.com/?p=327","0","revision","","0");
INSERT INTO 7ja_posts VALUES("330","1","2022-12-14 01:24:41","2022-12-14 01:24:41","","Scribble","","inherit","open","closed","","scribble","","","2022-12-14 01:24:41","2022-12-14 01:24:41","","319","https://latitude39creative.com/wp-content/uploads/2022/12/Scribble.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("331","1","2022-12-14 01:25:42","2022-12-14 01:25:42","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward.&nbsp;</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals.&nbsp;</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 01:25:42","2022-12-14 01:25:42","","319","https://latitude39creative.com/?p=331","0","revision","","0");
INSERT INTO 7ja_posts VALUES("333","1","2022-12-30 19:35:51","2022-12-30 19:35:51","","BFD-main-logo","","inherit","open","closed","","bfd-main-logo","","","2022-12-30 19:35:51","2022-12-30 19:35:51","","0","https://latitude39creative.com/wp-content/uploads/2022/12/BFD-main-logo.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts VALUES("334","1","2022-12-30 19:36:51","2022-12-30 19:36:51","","GW-logo","","inherit","open","closed","","gw-logo","","","2022-12-30 19:36:51","2022-12-30 19:36:51","","0","https://latitude39creative.com/wp-content/uploads/2022/12/GW-logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("335","1","2022-12-30 19:38:01","2022-12-30 19:38:01","","blueprintfinlogo","","inherit","open","closed","","blueprintfinlogo","","","2022-12-30 19:38:01","2022-12-30 19:38:01","","0","https://latitude39creative.com/wp-content/uploads/2022/12/blueprintfinlogo.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts VALUES("336","1","2022-12-30 19:45:26","2022-12-30 19:45:26","","PivotAll_Web-Logo","","inherit","open","closed","","pivotall_web-logo","","","2022-12-30 19:45:26","2022-12-30 19:45:26","","0","https://latitude39creative.com/wp-content/uploads/2022/12/PivotAll_Web-Logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("337","1","2022-12-30 19:45:39","2022-12-30 19:45:39","","Markpianoman","","inherit","open","closed","","markpianoman","","","2022-12-30 19:45:39","2022-12-30 19:45:39","","0","https://latitude39creative.com/wp-content/uploads/2022/12/Markpianoman.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("348","1","2023-01-26 03:38:34","2023-01-26 03:38:34","","Criativo - Creative Agency & Portfolio Elementor Template Kit","","publish","closed","closed","","criativo-creative-agency-portfolio-elementor-template-kit","","","2023-01-26 03:38:34","2023-01-26 03:38:34","","0","https://latitude39creative.com/?p=348","0","envato_tk_import","","0");
INSERT INTO 7ja_posts VALUES("349","1","2023-01-26 03:39:10","2023-01-26 03:39:10","<label> Your name\n    [text* your-name autocomplete:name] </label>\n\n<label> Your email\n    [email* your-email autocomplete:email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@latitude39creative.com>\nben@latitude39creative.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@latitude39creative.com>\n[your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for contacting us! We will reach out to book your discovery call.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.\nPlease enter a date in YYYY-MM-DD format.\nThis field has a too early date.\nThis field has a too late date.\nPlease enter a number.\nThis field has a too small number.\nThis field has a too large number.\nThe answer to the quiz is incorrect.\nPlease enter an email address.\nPlease enter a URL.\nPlease enter a telephone number.","Contact Us!","","publish","closed","closed","","contact-form-1","","","2023-01-27 14:06:28","2023-01-27 14:06:28","","0","https://latitude39creative.com/?post_type=wpcf7_contact_form&#038;p=349","0","wpcf7_contact_form","","0");
INSERT INTO 7ja_posts VALUES("353","1","2023-01-26 03:40:20","2023-01-26 03:40:20","<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"86\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Logo.png?fit=300%2C86&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Pages\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Contact Us\n											</a>\n									</li>\n						</ul>\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-pinterest\n											</a>\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © Criativo Creative Agency. All Right Reserved By Rometheme.</h6>","Footer","","publish","closed","closed","","footer-2","","","2023-01-26 03:40:21","2023-01-26 03:40:21","","0","https://latitude39creative.com/?elementor_library=footer-2","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("354","1","2023-01-26 03:40:21","2023-01-26 03:40:21","<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"86\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Logo.png?fit=300%2C86&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Pages\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Contact Us\n											</a>\n									</li>\n						</ul>\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-pinterest\n											</a>\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © Criativo Creative Agency. All Right Reserved By Rometheme.</h6>","Footer","","inherit","closed","closed","","353-revision-v1","","","2023-01-26 03:40:21","2023-01-26 03:40:21","","353","https://latitude39creative.com/?p=354","0","revision","","0");
INSERT INTO 7ja_posts VALUES("355","1","2023-01-26 03:40:32","2023-01-26 03:40:32","","portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg","","inherit","open","closed","","portrait-of-a-woman-with-artistic-make-up-p7zsu5p-jpg","","","2023-01-26 03:40:32","2023-01-26 03:40:32","","0","https://latitude39creative.com/wp-content/uploads/2023/01/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("356","1","2023-01-26 03:40:39","2023-01-26 03:40:39","","6-Brand-Identity.png","","inherit","open","closed","","6-brand-identity-png","","","2023-01-26 03:40:39","2023-01-26 03:40:39","","0","https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("357","1","2023-01-26 03:40:41","2023-01-26 03:40:41","","5-Web-Design.png","","inherit","open","closed","","5-web-design-png","","","2023-01-26 03:40:41","2023-01-26 03:40:41","","0","https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("358","1","2023-01-26 03:40:43","2023-01-26 03:40:43","","1-Ui-Ux.png","","inherit","open","closed","","1-ui-ux-png","","","2023-01-26 03:40:43","2023-01-26 03:40:43","","0","https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("359","1","2023-01-26 03:40:45","2023-01-26 03:40:45","","4-Video-Marketing.png","","inherit","open","closed","","4-video-marketing-png","","","2023-01-26 03:40:45","2023-01-26 03:40:45","","0","https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("360","1","2023-01-26 03:40:47","2023-01-26 03:40:47","","Untitled-1.png","","inherit","open","closed","","untitled-1-png","","","2023-01-26 03:40:47","2023-01-26 03:40:47","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("361","1","2023-01-26 03:40:49","2023-01-26 03:40:49","","Clean-Code.png","","inherit","open","closed","","clean-code-png","","","2023-01-26 03:40:49","2023-01-26 03:40:49","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Clean-Code.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("362","1","2023-01-26 03:40:51","2023-01-26 03:40:51","","Modern-Design.png","","inherit","open","closed","","modern-design-png","","","2023-01-26 03:40:51","2023-01-26 03:40:51","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Modern-Design.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("363","1","2023-01-26 03:40:53","2023-01-26 03:40:53","","1.jpg","","inherit","open","closed","","1-jpg","","","2023-01-26 03:40:53","2023-01-26 03:40:53","","0","https://latitude39creative.com/wp-content/uploads/2023/01/1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("364","1","2023-01-26 03:40:56","2023-01-26 03:40:56","","10-Project-Done.png","","inherit","open","closed","","10-project-done-png","","","2023-01-26 03:40:56","2023-01-26 03:40:56","","0","https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("365","1","2023-01-26 03:40:57","2023-01-26 03:40:57","","7-Happy-Costumer.png","","inherit","open","closed","","7-happy-costumer-png","","","2023-01-26 03:40:57","2023-01-26 03:40:57","","0","https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("366","1","2023-01-26 03:40:59","2023-01-26 03:40:59","","8-Award-Winning.png","","inherit","open","closed","","8-award-winning-png","","","2023-01-26 03:40:59","2023-01-26 03:40:59","","0","https://latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("367","1","2023-01-26 03:41:01","2023-01-26 03:41:01","","9-Team-Crew.png","","inherit","open","closed","","9-team-crew-png","","","2023-01-26 03:41:01","2023-01-26 03:41:01","","0","https://latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("372","1","2023-01-26 03:41:12","2023-01-26 03:41:12","","side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg","","inherit","open","closed","","side-view-portrait-of-a-woman-with-make-up-ctumauj-jpg","","","2023-01-26 03:41:12","2023-01-26 03:41:12","","0","https://latitude39creative.com/wp-content/uploads/2023/01/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("378","1","2023-01-26 03:41:24","2023-01-26 03:41:24","","apelah.jpg","","inherit","open","closed","","apelah-jpg","","","2023-01-26 03:41:24","2023-01-26 03:41:24","","0","https://latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("379","1","2023-01-26 03:41:27","2023-01-26 03:41:27","","11.jpg","","inherit","open","closed","","11-jpg","","","2023-01-26 03:41:27","2023-01-26 03:41:27","","0","https://latitude39creative.com/wp-content/uploads/2023/01/11.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("380","1","2023-01-26 03:41:35","2023-01-26 03:41:35","","Bg-1.jpg","","inherit","open","closed","","bg-1-jpg","","","2023-01-26 03:41:35","2023-01-26 03:41:35","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Bg-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("390","1","2023-01-26 03:42:05","2023-01-26 03:42:05","","adadad.jpg","","inherit","open","closed","","adadad-jpg","","","2023-01-26 03:42:05","2023-01-26 03:42:05","","0","https://latitude39creative.com/wp-content/uploads/2023/01/adadad.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("394","1","2023-01-26 03:42:21","2023-01-26 03:42:21","","bg-2.png","","inherit","open","closed","","bg-2-png","","","2023-01-26 03:42:21","2023-01-26 03:42:21","","0","https://latitude39creative.com/wp-content/uploads/2023/01/bg-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("403","1","2023-01-26 04:09:10","2023-01-26 04:09:10","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2023-01-26 04:09:10","2023-01-26 04:09:10","","9","https://latitude39creative.com/?p=403","0","revision","","0");
INSERT INTO 7ja_posts VALUES("404","1","2023-01-26 04:11:45","2023-01-26 04:11:45","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2023-01-26 04:11:45","2023-01-26 04:11:45","","9","https://latitude39creative.com/?p=404","0","revision","","0");
INSERT INTO 7ja_posts VALUES("415","0","2023-01-26 07:10:00","2023-01-26 07:10:00","<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>","","","publish","closed","closed","","7befe71c04536851b6485e7b012d3f0d","","","2023-01-26 07:10:00","2023-01-26 07:10:00","","0","https://latitude39creative.com/7befe71c04536851b6485e7b012d3f0d/","0","oembed_cache","","0");
INSERT INTO 7ja_posts VALUES("428","1","2023-01-27 15:08:17","2023-01-27 15:08:17","<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ooops.</h2>		\n			<h2> I Think You Got Lost.</h2>		\n			<h2>The Page You Were Looking For Couldn\'t Be Found.</h2>		\n			<a role=\"button\">\n						back to home page\n					</a>","404 Page","","inherit","closed","closed","","11-revision-v1","","","2023-01-27 15:08:17","2023-01-27 15:08:17","","11","https://latitude39creative.com/?p=428","0","revision","","0");
INSERT INTO 7ja_posts VALUES("433","1","2023-01-27 15:37:10","2023-01-27 15:37:10","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2023-01-27 15:37:10","2023-01-27 15:37:10","","9","https://latitude39creative.com/?p=433","0","revision","","0");
INSERT INTO 7ja_posts VALUES("437","1","2023-01-27 18:40:01","2023-01-27 18:40:01","","a-aawfa.jpg","","inherit","open","closed","","a-aawfa-jpg","","","2023-01-27 18:40:01","2023-01-27 18:40:01","","0","https://latitude39creative.com/wp-content/uploads/2023/01/a-aawfa.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("438","1","2023-01-27 18:40:04","2023-01-27 18:40:04","","S-1.png","","inherit","open","closed","","s-1-png","","","2023-01-27 18:40:04","2023-01-27 18:40:04","","0","https://latitude39creative.com/wp-content/uploads/2023/01/S-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("443","1","2023-01-27 18:40:17","2023-01-27 18:40:17","<h2>About Criativo.</h2>		\n		<p><a href=\"#\">Home</a> / About Us</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"498\" height=\"647\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?fit=498%2C647&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						ABOUT US\n					</h5><h3>We Use Creativity to Get Our Clients.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"300\" height=\"279\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/S-1.png?fit=300%2C279&amp;ssl=1\" alt=\"\" loading=\"lazy\" /></figure><h4>Clean Code</h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"300\" height=\"279\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/S-1.png?fit=300%2C279&amp;ssl=1\" alt=\"\" loading=\"lazy\" /></figure><h4>Modern Design</h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-1.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-2.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-3.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-5.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-6.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a.</p><p>Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum. Donec non blandit elit.</p>		\n			<a href=\"#\" role=\"button\">\n						VIEW ALL\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    Branding                 </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    UI &amp; UX Design                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    UI &amp; UX Design                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    Web Development                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Project Done					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Costumer					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Award Winning					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Team Members					</h3>\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Cases.</h3>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.</p>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis\n									</li>\n								<li>\n										Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo.\n									</li>\n						</ul>\n                            <input type=\"radio\" name=\"ekit_ia_5f8f9984\" id=\"ekit_ia_5f8f9984_0\"  hidden>\n                <label for=\"ekit_ia_5f8f9984_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G9.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G9.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Brand Identity\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_1e701e99\" id=\"ekit_ia_1e701e99_0\"  hidden>\n                <label for=\"ekit_ia_1e701e99_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G5.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G5.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Web Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_18174712\" id=\"ekit_ia_18174712_0\"  hidden>\n                <label for=\"ekit_ia_18174712_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G4.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G4.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            UI &amp; UX Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4db6e37c\" id=\"ekit_ia_4db6e37c_0\"  hidden>\n                <label for=\"ekit_ia_4db6e37c_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G1.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G1.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Video Marketing\n                </label>\n			<h5>\n						OUR TEAM\n					</h5><h3>Meet Expert Team.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n															<img width=\"454\" height=\"406\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?fit=454%2C406&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?w=454&amp;ssl=1 454w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 454px) 100vw, 454px\" />															\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Mike Washoski</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"499\" height=\"446\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?fit=499%2C446&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?w=499&amp;ssl=1 499w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 499px) 100vw, 499px\" />															\n			<h4>Lexi Black</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"545\" height=\"487\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?fit=545%2C487&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?w=545&amp;ssl=1 545w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 545px) 100vw, 545px\" />															\n			<h4>Hanna Smith</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"536\" height=\"479\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?fit=536%2C479&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?w=536&amp;ssl=1 536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 536px) 100vw, 536px\" />															\n			<h4>Kevin Widagdo</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>","About Us","","publish","closed","closed","","about-us","","","2023-01-27 18:40:22","2023-01-27 18:40:22","","0","https://latitude39creative.com/?elementor_library=about-us","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("444","1","2023-01-27 18:40:22","2023-01-27 18:40:22","<h2>About Criativo.</h2>		\n		<p><a href=\"#\">Home</a> / About Us</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"498\" height=\"647\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?fit=498%2C647&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						ABOUT US\n					</h5><h3>We Use Creativity to Get Our Clients.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"300\" height=\"279\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/S-1.png?fit=300%2C279&amp;ssl=1\" alt=\"\" loading=\"lazy\" /></figure><h4>Clean Code</h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"300\" height=\"279\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/S-1.png?fit=300%2C279&amp;ssl=1\" alt=\"\" loading=\"lazy\" /></figure><h4>Modern Design</h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-1.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-2.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-3.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-5.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-6.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a.</p><p>Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum. Donec non blandit elit.</p>		\n			<a href=\"#\" role=\"button\">\n						VIEW ALL\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    Branding                 </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    UI &amp; UX Design                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    UI &amp; UX Design                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    Web Development                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Project Done					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Costumer					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Award Winning					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Team Members					</h3>\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Cases.</h3>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.</p>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis\n									</li>\n								<li>\n										Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo.\n									</li>\n						</ul>\n                            <input type=\"radio\" name=\"ekit_ia_5f8f9984\" id=\"ekit_ia_5f8f9984_0\"  hidden>\n                <label for=\"ekit_ia_5f8f9984_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G9.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G9.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Brand Identity\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_1e701e99\" id=\"ekit_ia_1e701e99_0\"  hidden>\n                <label for=\"ekit_ia_1e701e99_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G5.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G5.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Web Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_18174712\" id=\"ekit_ia_18174712_0\"  hidden>\n                <label for=\"ekit_ia_18174712_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G4.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G4.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            UI &amp; UX Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4db6e37c\" id=\"ekit_ia_4db6e37c_0\"  hidden>\n                <label for=\"ekit_ia_4db6e37c_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G1.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G1.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Video Marketing\n                </label>\n			<h5>\n						OUR TEAM\n					</h5><h3>Meet Expert Team.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n															<img width=\"454\" height=\"406\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?fit=454%2C406&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?w=454&amp;ssl=1 454w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 454px) 100vw, 454px\" />															\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Mike Washoski</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"499\" height=\"446\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?fit=499%2C446&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?w=499&amp;ssl=1 499w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 499px) 100vw, 499px\" />															\n			<h4>Lexi Black</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"545\" height=\"487\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?fit=545%2C487&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?w=545&amp;ssl=1 545w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 545px) 100vw, 545px\" />															\n			<h4>Hanna Smith</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"536\" height=\"479\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?fit=536%2C479&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?w=536&amp;ssl=1 536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 536px) 100vw, 536px\" />															\n			<h4>Kevin Widagdo</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>","About Us","","inherit","closed","closed","","443-revision-v1","","","2023-01-27 18:40:22","2023-01-27 18:40:22","","443","https://latitude39creative.com/?p=444","0","revision","","0");
INSERT INTO 7ja_posts VALUES("448","1","2023-01-27 18:48:11","2023-01-27 18:48:11","","IpadYellowTrans (1)","","inherit","open","closed","","ipadyellowtrans-1","","","2023-01-27 18:48:11","2023-01-27 18:48:11","","0","https://latitude39creative.com/wp-content/uploads/2023/01/IpadYellowTrans-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("449","1","2023-01-27 18:49:26","2023-01-27 18:49:26","","Blueprint Financial","","inherit","open","closed","","blueprint-financial","","","2023-01-27 18:49:26","2023-01-27 18:49:26","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Blueprint-Financial.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("450","1","2023-01-27 18:51:29","2023-01-27 18:51:29","","GW BG Template (1)","","inherit","open","closed","","gw-bg-template-1","","","2023-01-27 18:51:29","2023-01-27 18:51:29","","0","https://latitude39creative.com/wp-content/uploads/2023/01/GW-BG-Template-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("452","1","2023-01-27 18:52:38","2023-01-27 18:52:38","","Pianoonbeach (1)","","inherit","open","closed","","pianoonbeach-1","","","2023-01-27 18:52:38","2023-01-27 18:52:38","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("453","1","2023-01-27 18:53:08","2023-01-27 18:53:08","","Pints and Peaks","","inherit","open","closed","","pints-and-peaks","","","2023-01-27 18:53:08","2023-01-27 18:53:08","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Pints-and-Peaks.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("454","1","2023-01-27 18:53:48","2023-01-27 18:53:48","","10-essentials-1-768x1024","","inherit","open","closed","","10-essentials-1-768x1024","","","2023-01-27 18:53:48","2023-01-27 18:53:48","","0","https://latitude39creative.com/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("455","1","2023-01-27 18:55:01","2023-01-27 18:55:01","","Summer-Hiking-Series-Correct-1024x576","","inherit","open","closed","","summer-hiking-series-correct-1024x576","","","2023-01-27 18:55:01","2023-01-27 18:55:01","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("456","1","2023-01-27 19:10:52","2023-01-27 19:10:52","","Screenshot 2023-01-27 12.09.47 PM - Display 2","","inherit","open","closed","","screenshot-2023-01-27-12-09-47-pm-display-2","","","2023-01-27 19:10:52","2023-01-27 19:10:52","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("457","1","2023-01-27 19:14:22","2023-01-27 19:14:22","","Screenshot 2023-01-27 12.13.16 PM - Display 2","","inherit","open","closed","","screenshot-2023-01-27-12-13-16-pm-display-2","","","2023-01-27 19:14:22","2023-01-27 19:14:22","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.13.16-PM-Display-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("458","1","2023-01-27 19:16:16","2023-01-27 19:16:16","","Gokyo-Lake-1","","inherit","open","closed","","gokyo-lake-1","","","2023-01-27 19:16:16","2023-01-27 19:16:16","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Gokyo-Lake-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("460","1","2023-01-27 19:21:13","2023-01-27 19:21:13","","Hike video","","inherit","open","closed","","hike-video","","","2023-01-27 19:21:13","2023-01-27 19:21:13","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4","0","attachment","video/mp4","0");
INSERT INTO 7ja_posts VALUES("461","1","2023-01-27 19:26:54","2023-01-27 19:26:54","","hike-walkway-857x1024","","inherit","open","closed","","hike-walkway-857x1024","","","2023-01-27 19:26:54","2023-01-27 19:26:54","","169","https://latitude39creative.com/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("487","1","2023-01-29 18:10:12","2023-01-29 18:10:12","","Screenshot 2023-01-29 11.01.56 AM - Display 1","","inherit","open","closed","","screenshot-2023-01-29-11-01-56-am-display-1","","","2023-01-29 18:10:12","2023-01-29 18:10:12","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Screenshot-2023-01-29-11.01.56-AM-Display-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("488","1","2023-01-29 18:10:47","2023-01-29 18:10:47","","UnlimitedOutdoors_WEB4Color1-1 (1)","","inherit","open","closed","","unlimitedoutdoors_web4color1-1-1","","","2023-01-29 18:10:47","2023-01-29 18:10:47","","169","https://latitude39creative.com/wp-content/uploads/2023/01/UnlimitedOutdoors_WEB4Color1-1-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("514","1","2023-01-30 03:35:35","2023-01-30 03:35:35","<h3>Who We Are.</h3>","Who we are1","","publish","closed","closed","","who-we-are1","","","2023-01-30 03:35:37","2023-01-30 03:35:37","","0","https://latitude39creative.com/?elementor_library=who-we-are1","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("515","1","2023-01-30 03:35:37","2023-01-30 03:35:37","","Who we are1","","inherit","closed","closed","","514-revision-v1","","","2023-01-30 03:35:37","2023-01-30 03:35:37","","514","https://latitude39creative.com/?p=515","0","revision","","0");
INSERT INTO 7ja_posts VALUES("516","1","2023-01-30 03:35:37","2023-01-30 03:35:37","<h3>Who We Are.</h3>","Who we are1","","inherit","closed","closed","","514-revision-v1","","","2023-01-30 03:35:37","2023-01-30 03:35:37","","514","https://latitude39creative.com/?p=516","0","revision","","0");
INSERT INTO 7ja_posts VALUES("517","1","2023-01-30 03:35:54","2023-01-30 03:35:54","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and everything Design</h6>","Who we are2","","publish","closed","closed","","who-we-are2","","","2023-01-30 03:35:55","2023-01-30 03:35:55","","0","https://latitude39creative.com/?elementor_library=who-we-are2","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("518","1","2023-01-30 03:35:55","2023-01-30 03:35:55","","Who we are2","","inherit","closed","closed","","517-revision-v1","","","2023-01-30 03:35:55","2023-01-30 03:35:55","","517","https://latitude39creative.com/?p=518","0","revision","","0");
INSERT INTO 7ja_posts VALUES("519","1","2023-01-30 03:35:55","2023-01-30 03:35:55","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and everything Design</h6>","Who we are2","","inherit","closed","closed","","517-revision-v1","","","2023-01-30 03:35:55","2023-01-30 03:35:55","","517","https://latitude39creative.com/?p=519","0","revision","","0");
INSERT INTO 7ja_posts VALUES("520","1","2023-01-30 03:36:29","2023-01-30 03:36:29","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Projects					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Customers					</h3>","Why choose us3","","publish","closed","closed","","why-choose-us3","","","2023-01-30 03:36:30","2023-01-30 03:36:30","","0","https://latitude39creative.com/?elementor_library=why-choose-us3","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("521","1","2023-01-30 03:36:30","2023-01-30 03:36:30","","Why choose us3","","inherit","closed","closed","","520-revision-v1","","","2023-01-30 03:36:30","2023-01-30 03:36:30","","520","https://latitude39creative.com/?p=521","0","revision","","0");
INSERT INTO 7ja_posts VALUES("522","1","2023-01-30 03:36:30","2023-01-30 03:36:30","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Projects					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Customers					</h3>","Why choose us3","","inherit","closed","closed","","520-revision-v1","","","2023-01-30 03:36:30","2023-01-30 03:36:30","","520","https://latitude39creative.com/?p=522","0","revision","","0");
INSERT INTO 7ja_posts VALUES("526","1","2023-01-30 03:46:03","2023-01-30 03:46:03","","About","","publish","closed","closed","","about","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=526","2","nav_menu_item","","0");
INSERT INTO 7ja_posts VALUES("536","1","2023-01-30 03:54:34","2023-01-30 03:54:34","","portrait-of-a-woman-with-artistic-make-up","","inherit","open","closed","","portrait-of-a-woman-with-artistic-make-up","","","2023-01-30 03:54:34","2023-01-30 03:54:34","","131","https://latitude39creative.com/wp-content/uploads/2023/01/portrait-of-a-woman-with-artistic-make-up.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("537","1","2023-01-30 04:02:17","2023-01-30 04:02:17","<h2>Testimonials</h2>		\n		<p><a href=\"#\">Home</a> / Testimonials</p>		\n			<h5>\n						TESTIMONIALS\n					</h5><h3>What Client Says.</h3>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n	<ul></ul>\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n	<ul></ul>","Testimonials","","publish","closed","closed","","testimonials","","","2023-01-30 04:02:19","2023-01-30 04:02:19","","0","https://latitude39creative.com/?elementor_library=testimonials","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("538","1","2023-01-30 04:02:19","2023-01-30 04:02:19","<h2>Testimonials</h2>		\n		<p><a href=\"#\">Home</a> / Testimonials</p>		\n			<h5>\n						TESTIMONIALS\n					</h5><h3>What Client Says.</h3>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n	<ul></ul>\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n	<ul></ul>","Testimonials","","inherit","closed","closed","","537-revision-v1","","","2023-01-30 04:02:19","2023-01-30 04:02:19","","537","https://latitude39creative.com/?p=538","0","revision","","0");
INSERT INTO 7ja_posts VALUES("556","1","2023-02-07 20:17:03","2023-02-07 20:17:03","<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategies, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\" role=\"button\">\n						Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>","What we do","","publish","closed","closed","","what-we-do","","","2023-02-07 20:17:13","2023-02-07 20:17:13","","0","https://latitude39creative.com/?elementor_library=what-we-do","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("557","1","2023-02-07 20:17:13","2023-02-07 20:17:13","","What we do","","inherit","closed","closed","","556-revision-v1","","","2023-02-07 20:17:13","2023-02-07 20:17:13","","556","https://latitude39creative.com/?p=557","0","revision","","0");
INSERT INTO 7ja_posts VALUES("558","1","2023-02-07 20:17:13","2023-02-07 20:17:13","<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategies, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\" role=\"button\">\n						Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>","What we do","","inherit","closed","closed","","556-revision-v1","","","2023-02-07 20:17:13","2023-02-07 20:17:13","","556","https://latitude39creative.com/?p=558","0","revision","","0");
INSERT INTO 7ja_posts VALUES("559","1","2023-02-07 22:14:23","2023-02-07 22:14:23","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>","why choose us","","publish","closed","closed","","why-choose-us-2","","","2023-02-07 22:14:28","2023-02-07 22:14:28","","0","https://latitude39creative.com/?elementor_library=why-choose-us-2","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("560","1","2023-02-07 22:14:28","2023-02-07 22:14:28","","why choose us","","inherit","closed","closed","","559-revision-v1","","","2023-02-07 22:14:28","2023-02-07 22:14:28","","559","https://latitude39creative.com/?p=560","0","revision","","0");
INSERT INTO 7ja_posts VALUES("561","1","2023-02-07 22:14:28","2023-02-07 22:14:28","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>","why choose us","","inherit","closed","closed","","559-revision-v1","","","2023-02-07 22:14:28","2023-02-07 22:14:28","","559","https://latitude39creative.com/?p=561","0","revision","","0");
INSERT INTO 7ja_posts VALUES("562","1","2023-02-07 22:17:00","2023-02-07 22:17:00","<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Video Marketing</h2>		\n<a href=\"#test-popup-link7bcbc7a0\">\n						</a>	\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n										<p>Coming Soon!</p>","Our latest projects","","publish","closed","closed","","our-latest-projects","","","2023-02-07 22:17:02","2023-02-07 22:17:02","","0","https://latitude39creative.com/?elementor_library=our-latest-projects","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("563","1","2023-02-07 22:17:02","2023-02-07 22:17:02","","Our latest projects","","inherit","closed","closed","","562-revision-v1","","","2023-02-07 22:17:02","2023-02-07 22:17:02","","562","https://latitude39creative.com/?p=563","0","revision","","0");
INSERT INTO 7ja_posts VALUES("564","1","2023-02-07 22:17:02","2023-02-07 22:17:02","<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Video Marketing</h2>		\n<a href=\"#test-popup-link7bcbc7a0\">\n						</a>	\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n										<p>Coming Soon!</p>","Our latest projects","","inherit","closed","closed","","562-revision-v1","","","2023-02-07 22:17:02","2023-02-07 22:17:02","","562","https://latitude39creative.com/?p=564","0","revision","","0");
INSERT INTO 7ja_posts VALUES("568","1","2023-02-07 22:37:47","2023-02-07 22:37:47","<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1712\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Scribble-scaled.jpg\" alt=\"\" loading=\"lazy\" />						\n								<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/feck-perfuction/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\"></a>\n														<h2>\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/feck-perfuction/\" target=\"_blank\" rel=\"noopener\">\n				Feck Perfuction!			</a>\n		</h2>\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/author/latitude39creative/\" title=\"Posts by latitude39creative\" rel=\"author\">latitude39creative</a>				\n							•\n					December 14, 2022\n							•\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n					<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much …</p>","Blog","","publish","closed","closed","","blog","","","2023-02-07 22:37:48","2023-02-07 22:37:48","","0","https://latitude39creative.com/?elementor_library=blog","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("569","1","2023-02-07 22:37:48","2023-02-07 22:37:48","","Blog","","inherit","closed","closed","","568-revision-v1","","","2023-02-07 22:37:48","2023-02-07 22:37:48","","568","https://latitude39creative.com/?p=569","0","revision","","0");
INSERT INTO 7ja_posts VALUES("570","1","2023-02-07 22:37:48","2023-02-07 22:37:48","<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1712\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Scribble-scaled.jpg\" alt=\"\" loading=\"lazy\" />						\n								<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/feck-perfuction/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\"></a>\n														<h2>\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/feck-perfuction/\" target=\"_blank\" rel=\"noopener\">\n				Feck Perfuction!			</a>\n		</h2>\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/author/latitude39creative/\" title=\"Posts by latitude39creative\" rel=\"author\">latitude39creative</a>				\n							•\n					December 14, 2022\n							•\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n					<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much …</p>","Blog","","inherit","closed","closed","","568-revision-v1","","","2023-02-07 22:37:48","2023-02-07 22:37:48","","568","https://latitude39creative.com/?p=570","0","revision","","0");
INSERT INTO 7ja_posts VALUES("600","1","2023-02-08 22:49:27","2023-02-08 22:49:27","","Elementor-post-screenshot_11_2023-02-08-22-49-27_315d68aa.png","","inherit","open","closed","","elementor-post-screenshot_11_2023-02-08-22-49-27_315d68aa-png","","","2023-02-08 22:49:27","2023-02-08 22:49:27","","11","https://latitude39creative.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_11_2023-02-08-22-49-27_315d68aa.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("601","1","2023-02-08 22:49:29","2023-02-08 22:49:29","","Elementor Header #601","","publish","closed","closed","","elementor-header-601","","","2023-02-15 18:56:14","2023-02-15 18:56:14","","0","https://latitude39creative.com/?post_type=elementor_library&#038;p=601","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("602","1","2023-02-08 22:49:29","2023-02-08 22:49:29","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 22:49:29","2023-02-08 22:49:29","","601","https://latitude39creative.com/?p=602","0","revision","","0");
INSERT INTO 7ja_posts VALUES("604","1","2023-02-08 22:50:30","2023-02-08 22:50:30","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"86\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/Logo.png?fit=300%2C86&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			        <a href=\"#ekit_modal-popup-63e603c0\">\n                    </a>\n        <!-- language switcher strart -->\n        <!-- xs modal -->\n            <!-- Polylang search - thanks to Alain Melsens -->\n                <form role=\"search\" method=\"get\" action=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">\n                    <input type=\"search\" placeholder=\"Search...\" value=\"\" name=\"s\" />\n                    <button type=\"submit\">\n                                            </button>\n                </form>\n        <!-- End xs modal -->\n        <!-- end language switcher strart -->","Header","","publish","closed","closed","","header","","","2023-02-08 22:50:32","2023-02-08 22:50:32","","0","https://latitude39creative.com/?elementor_library=header","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("605","1","2023-02-08 22:50:32","2023-02-08 22:50:32","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"86\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/Logo.png?fit=300%2C86&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			        <a href=\"#ekit_modal-popup-63e603c0\">\n                    </a>\n        <!-- language switcher strart -->\n        <!-- xs modal -->\n            <!-- Polylang search - thanks to Alain Melsens -->\n                <form role=\"search\" method=\"get\" action=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">\n                    <input type=\"search\" placeholder=\"Search...\" value=\"\" name=\"s\" />\n                    <button type=\"submit\">\n                                            </button>\n                </form>\n        <!-- End xs modal -->\n        <!-- end language switcher strart -->","Header","","inherit","closed","closed","","604-revision-v1","","","2023-02-08 22:50:32","2023-02-08 22:50:32","","604","https://latitude39creative.com/?p=605","0","revision","","0");
INSERT INTO 7ja_posts VALUES("606","1","2023-02-08 22:57:40","2023-02-08 22:57:40","<button>\n                            </button>\n            <ul id=\"menu-menu\"><li id=\"menu-item-192\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Home</a></li>\n<li id=\"menu-item-189\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/about/\">About</a></li>\n<li id=\"menu-item-193\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\">Services</a></li>\n<li id=\"menu-item-190\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/clients/\">Current Projects</a></li>\n<li id=\"menu-item-317\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/blog/\">Blog</a></li>\n</ul>\n						<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac\" target=\"_self\" rel=\"noopener\">\n                            <img src=\"\" title=\"\" alt=\"\" />\n						</a> \n					<button type=\"button\">X</button>","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 22:57:40","2023-02-08 22:57:40","","601","https://latitude39creative.com/?p=606","0","revision","","0");
INSERT INTO 7ja_posts VALUES("607","1","2023-02-08 22:58:00","2023-02-08 22:58:00","<button>\n                            </button>\n            <ul id=\"menu-menu\"><li id=\"menu-item-192\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Home</a></li>\n<li id=\"menu-item-189\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/about/\">About</a></li>\n<li id=\"menu-item-193\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\">Services</a></li>\n<li id=\"menu-item-190\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/clients/\">Current Projects</a></li>\n<li id=\"menu-item-317\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/blog/\">Blog</a></li>\n</ul>\n						<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac\" target=\"_self\" rel=\"noopener\">\n                            <img src=\"\" title=\"\" alt=\"\" />\n						</a> \n					<button type=\"button\">X</button>","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 22:58:00","2023-02-08 22:58:00","","601","https://latitude39creative.com/?p=607","0","revision","","0");
INSERT INTO 7ja_posts VALUES("608","1","2023-02-08 22:58:12","2023-02-08 22:58:12","<button>\n                            </button>\n            <ul id=\"menu-menu\"><li id=\"menu-item-192\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Home</a></li>\n<li id=\"menu-item-189\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/about/\">About</a></li>\n<li id=\"menu-item-193\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\">Services</a></li>\n<li id=\"menu-item-190\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/clients/\">Current Projects</a></li>\n<li id=\"menu-item-317\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/blog/\">Blog</a></li>\n</ul>\n						<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac\" target=\"_self\" rel=\"noopener\">\n                            <img src=\"\" title=\"\" alt=\"\" />\n						</a> \n					<button type=\"button\">X</button>","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 22:58:12","2023-02-08 22:58:12","","601","https://latitude39creative.com/?p=608","0","revision","","0");
INSERT INTO 7ja_posts VALUES("609","1","2023-02-08 23:01:11","2023-02-08 23:01:11","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 23:01:11","2023-02-08 23:01:11","","601","https://latitude39creative.com/?p=609","0","revision","","0");
INSERT INTO 7ja_posts VALUES("613","1","2023-02-14 21:05:33","2023-02-14 21:05:33","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/GW-logo.png\" alt=\"GW-logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/blueprintfinlogo.webp\" alt=\"blueprintfinlogo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" alt=\"BFD-main-logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/PivotAll_Web-Logo.png\" alt=\"PivotAll_Web-Logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Markpianoman.png\" alt=\"Markpianoman\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/UnlimitedOutdoors_WEB4Color1-1-1.jpg\" alt=\"UnlimitedOutdoors_WEB4Color1-1 (1)\" /></figure>			\n												Previous\n												Next","Client list","","publish","closed","closed","","client-list","","","2023-02-14 21:05:38","2023-02-14 21:05:38","","0","https://latitude39creative.com/?elementor_library=client-list","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("614","1","2023-02-14 21:05:38","2023-02-14 21:05:38","","Client list","","inherit","closed","closed","","613-revision-v1","","","2023-02-14 21:05:38","2023-02-14 21:05:38","","613","https://latitude39creative.com/?p=614","0","revision","","0");
INSERT INTO 7ja_posts VALUES("615","1","2023-02-14 21:05:38","2023-02-14 21:05:38","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/GW-logo.png\" alt=\"GW-logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/blueprintfinlogo.webp\" alt=\"blueprintfinlogo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" alt=\"BFD-main-logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/PivotAll_Web-Logo.png\" alt=\"PivotAll_Web-Logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Markpianoman.png\" alt=\"Markpianoman\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/UnlimitedOutdoors_WEB4Color1-1-1.jpg\" alt=\"UnlimitedOutdoors_WEB4Color1-1 (1)\" /></figure>			\n												Previous\n												Next","Client list","","inherit","closed","closed","","613-revision-v1","","","2023-02-14 21:05:38","2023-02-14 21:05:38","","613","https://latitude39creative.com/?p=615","0","revision","","0");
INSERT INTO 7ja_posts VALUES("638","1","2023-02-14 22:11:36","2023-02-14 22:11:36","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-14 22:11:36","2023-02-14 22:11:36","","601","https://latitude39creative.com/?p=638","0","revision","","0");
INSERT INTO 7ja_posts VALUES("649","1","2023-02-14 22:17:17","2023-02-14 22:17:17","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n								</a>\n				<h4>\n					<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n						Email Us					</a>\n				</h4>\n									<p>\n						Ben@latitude39creative.com					</p>","Contact us","","publish","closed","closed","","contact-us-2","","","2023-02-15 15:02:06","2023-02-15 15:02:06","","0","https://latitude39creative.com/?elementor_library=contact-us-2","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("650","1","2023-02-14 22:17:19","2023-02-14 22:17:19","","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-14 22:17:19","2023-02-14 22:17:19","","649","https://latitude39creative.com/?p=650","0","revision","","0");
INSERT INTO 7ja_posts VALUES("651","1","2023-02-14 22:17:20","2023-02-14 22:17:20","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						+(827) 123 - 456 - 7891					</p>\n				<h4>\n						Mail Us					\n				</h4>\n									<p>\n						info@evaniayogastudio.com					</p>","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-14 22:17:20","2023-02-14 22:17:20","","649","https://latitude39creative.com/?p=651","0","revision","","0");
INSERT INTO 7ja_posts VALUES("658","1","2023-02-14 22:34:34","2023-02-14 22:34:34","","placeholder.png","","inherit","open","closed","","placeholder-png","","","2023-02-14 22:34:34","2023-02-14 22:34:34","","0","https://latitude39creative.com/wp-content/uploads/2023/02/placeholder.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("659","1","2023-02-14 22:34:35","2023-02-14 22:34:35","<h1>Portfolio Carousel</h1>		\n		<p><a href=\"#\">Home</a> / Portfolio Carousel</p>		\n			<h5>\n						PORTFOLIO\n					</h5><h3>Latest  Work.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G15.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G15.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G16.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G16.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G17.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G17.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G18.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G18.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G19.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G19.jpg\" /></figure>","Portfolio 2","","publish","closed","closed","","portfolio-2","","","2023-02-14 22:34:37","2023-02-14 22:34:37","","0","https://latitude39creative.com/?elementor_library=portfolio-2","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("660","1","2023-02-14 22:34:37","2023-02-14 22:34:37","<h1>Portfolio Carousel</h1>		\n		<p><a href=\"#\">Home</a> / Portfolio Carousel</p>		\n			<h5>\n						PORTFOLIO\n					</h5><h3>Latest  Work.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G15.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G15.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G16.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G16.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G17.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G17.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G18.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G18.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G19.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G19.jpg\" /></figure>","Portfolio 2","","inherit","closed","closed","","659-revision-v1","","","2023-02-14 22:34:37","2023-02-14 22:34:37","","659","https://latitude39creative.com/?p=660","0","revision","","0");
INSERT INTO 7ja_posts VALUES("679","1","2023-02-15 02:57:02","2023-02-15 02:57:02","<h2>Services</h2>","Services Hero","","publish","closed","closed","","services-hero","","","2023-02-15 02:57:04","2023-02-15 02:57:04","","0","https://latitude39creative.com/?elementor_library=services-hero","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("680","1","2023-02-15 02:57:03","2023-02-15 02:57:03","","Services Hero","","inherit","closed","closed","","679-revision-v1","","","2023-02-15 02:57:03","2023-02-15 02:57:03","","679","https://latitude39creative.com/?p=680","0","revision","","0");
INSERT INTO 7ja_posts VALUES("681","1","2023-02-15 02:57:04","2023-02-15 02:57:04","<h2>Services</h2>","Services Hero","","inherit","closed","closed","","679-revision-v1","","","2023-02-15 02:57:04","2023-02-15 02:57:04","","679","https://latitude39creative.com/?p=681","0","revision","","0");
INSERT INTO 7ja_posts VALUES("700","1","2023-02-15 03:07:37","2023-02-15 03:07:37","","Latitude39logo","","inherit","open","closed","","latitude39logo","","","2023-02-15 03:07:37","2023-02-15 03:07:37","","0","https://latitude39creative.com/wp-content/uploads/2023/02/Latitude39logo.html","0","attachment","text/html","0");
INSERT INTO 7ja_posts VALUES("704","1","2023-02-15 03:17:43","2023-02-15 03:17:43","","Latitude Logo-02","","inherit","open","closed","","latitude-logo-02-2","","","2023-02-15 03:17:43","2023-02-15 03:17:43","","0","https://latitude39creative.com/wp-content/uploads/2023/02/Latitude-Logo-02-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("706","1","2023-02-15 03:21:43","2023-02-15 03:21:43","","premium-addons-logo","","inherit","open","closed","","premium-addons-logo","","","2023-02-15 03:21:43","2023-02-15 03:21:43","","0","https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("707","1","2023-02-15 03:22:21","2023-02-15 03:22:21","","leap13-logo","","inherit","open","closed","","leap13-logo","","","2023-02-15 03:22:21","2023-02-15 03:22:21","","0","https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("709","1","2023-02-15 03:30:39","2023-02-15 03:30:39","","elementor-logo","","inherit","open","closed","","elementor-logo","","","2023-02-15 03:30:39","2023-02-15 03:30:39","","169","https://latitude39creative.com/wp-content/uploads/2023/02/elementor-logo.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("710","1","2023-02-15 03:34:05","2023-02-15 03:34:05","","elementorlogo_","","inherit","open","closed","","elementorlogo_","","","2023-02-15 03:34:05","2023-02-15 03:34:05","","169","https://latitude39creative.com/wp-content/uploads/2023/02/elementorlogo_.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("715","1","2023-02-15 03:39:50","2023-02-15 03:39:50","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.facebook.com/latitude39creative\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"https://www.instagram.com/latitude39creative/\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © 2023 | Latitude39Creative</h6>","Elementor Footer #715","","publish","closed","closed","","elementor-footer-715","","","2023-02-15 03:49:56","2023-02-15 03:49:56","","0","https://latitude39creative.com/?post_type=elementor_library&#038;p=715","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("716","1","2023-02-15 03:39:50","2023-02-15 03:39:50","","Elementor Footer #715","","inherit","closed","closed","","715-revision-v1","","","2023-02-15 03:39:50","2023-02-15 03:39:50","","715","https://latitude39creative.com/?p=716","0","revision","","0");
INSERT INTO 7ja_posts VALUES("718","1","2023-02-15 03:49:37","2023-02-15 03:49:37","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.facebook.com/latitude39creative\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"https://www.instagram.com/latitude39creative/\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © 2023 Latitude39Creative</h6>","Elementor Footer #715","","inherit","closed","closed","","715-revision-v1","","","2023-02-15 03:49:37","2023-02-15 03:49:37","","715","https://latitude39creative.com/?p=718","0","revision","","0");
INSERT INTO 7ja_posts VALUES("719","1","2023-02-15 03:49:56","2023-02-15 03:49:56","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.facebook.com/latitude39creative\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"https://www.instagram.com/latitude39creative/\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © 2023 | Latitude39Creative</h6>","Elementor Footer #715","","inherit","closed","closed","","715-revision-v1","","","2023-02-15 03:49:56","2023-02-15 03:49:56","","715","https://latitude39creative.com/?p=719","0","revision","","0");
INSERT INTO 7ja_posts VALUES("729","1","2023-02-15 04:00:59","2023-02-15 04:00:59","","Elementor-post-screenshot_715_2023-02-15-04-00-59_4afffbf1.png","","inherit","open","closed","","elementor-post-screenshot_715_2023-02-15-04-00-59_4afffbf1-png","","","2023-02-15 04:00:59","2023-02-15 04:00:59","","715","https://latitude39creative.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_715_2023-02-15-04-00-59_4afffbf1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("730","1","2023-02-15 04:01:40","2023-02-15 04:01:40","<h1>Single Project</h1>		\n		<p><a href=\"#\">Home</a> / Single Project</p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>June 03, 2021</p>		\n			<h4>Content Video Marketing</h4>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. </p>		\n			<h6>Client</h6>		\n			<h6>Rometheme</h6>		\n			<h6>Project</h6>		\n			<h6>Video Marketing</h6>		\n			<h6>Website</h6>		\n			<h6>www.yourwebsitehere.com</h6>		\n			<h6>Social Media</h6>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"450\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?fit=800%2C450&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>\nIntroduction & Challenge</h4>		\n		<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.</p><p>Augue neque gravida in fermentum et. Urna et pharetra pharetra massa massa ultricies mi. In massa tempor nec feugiat nisl pretium fusce. Eu lobortis elementum nibh tellus molestie nunc non.</p>https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h4>Innovation will Almost always beat mere Talent</h4>		\n		<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.</p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h6>Share :</h6>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>","Single Project","","publish","closed","closed","","single-project","","","2023-02-15 04:01:42","2023-02-15 04:01:42","","0","https://latitude39creative.com/?elementor_library=single-project","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("731","1","2023-02-15 04:01:42","2023-02-15 04:01:42","<h1>Single Project</h1>		\n		<p><a href=\"#\">Home</a> / Single Project</p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>June 03, 2021</p>		\n			<h4>Content Video Marketing</h4>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. </p>		\n			<h6>Client</h6>		\n			<h6>Rometheme</h6>		\n			<h6>Project</h6>		\n			<h6>Video Marketing</h6>		\n			<h6>Website</h6>		\n			<h6>www.yourwebsitehere.com</h6>		\n			<h6>Social Media</h6>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"450\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?fit=800%2C450&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>\nIntroduction & Challenge</h4>		\n		<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.</p><p>Augue neque gravida in fermentum et. Urna et pharetra pharetra massa massa ultricies mi. In massa tempor nec feugiat nisl pretium fusce. Eu lobortis elementum nibh tellus molestie nunc non.</p>https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h4>Innovation will Almost always beat mere Talent</h4>		\n		<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.</p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h6>Share :</h6>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>","Single Project","","inherit","closed","closed","","730-revision-v1","","","2023-02-15 04:01:42","2023-02-15 04:01:42","","730","https://latitude39creative.com/?p=731","0","revision","","0");
INSERT INTO 7ja_posts VALUES("732","1","2023-02-15 04:11:28","2023-02-15 04:11:28","<h1> Blog</h1>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h1> Share This Post</h1>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>More To Explore</h2>","Single Post","","inherit","closed","closed","","24-revision-v1","","","2023-02-15 04:11:28","2023-02-15 04:11:28","","24","https://latitude39creative.com/?p=732","0","revision","","0");
INSERT INTO 7ja_posts VALUES("733","1","2023-02-15 04:12:18","2023-02-15 04:12:18","<h1> Blog</h1>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h1> Share This Post</h1>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>More To Explore</h2>","Single Post","","inherit","closed","closed","","24-revision-v1","","","2023-02-15 04:12:18","2023-02-15 04:12:18","","24","https://latitude39creative.com/?p=733","0","revision","","0");
INSERT INTO 7ja_posts VALUES("734","1","2023-02-15 04:12:46","2023-02-15 04:12:46","","Elementor-post-screenshot_24_2023-02-15-04-12-46_373262ba.png","","inherit","open","closed","","elementor-post-screenshot_24_2023-02-15-04-12-46_373262ba-png","","","2023-02-15 04:12:46","2023-02-15 04:12:46","","24","https://latitude39creative.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_24_2023-02-15-04-12-46_373262ba.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("738","1","2023-02-15 04:13:31","2023-02-15 04:13:31","<h1>Latest News</h1>		\n		<p><a href=\"#\">Home</a> / Latest News</p>		\n			<h5>\n						OUR BLOG\n					</h5><h3>Our Latest News.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Consectetur Adipiscing Elit Curabitur Vel Ornare</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Ut Sagittis Consectetur Ante t Tincidunt</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>In HacHhabitasse Platea<br>Dictumst</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Ut Sagittis Consectetur Ante t Tincidunt</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>In HacHhabitasse Platea<br>Dictumst</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Consectetur Adipiscing Elit Curabitur Vel Ornare</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>","Latest News","","publish","closed","closed","","latest-news","","","2023-02-15 04:13:34","2023-02-15 04:13:34","","0","https://latitude39creative.com/?elementor_library=latest-news","0","elementor_library","","0");
INSERT INTO 7ja_posts VALUES("739","1","2023-02-15 04:13:34","2023-02-15 04:13:34","<h1>Latest News</h1>		\n		<p><a href=\"#\">Home</a> / Latest News</p>		\n			<h5>\n						OUR BLOG\n					</h5><h3>Our Latest News.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Consectetur Adipiscing Elit Curabitur Vel Ornare</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Ut Sagittis Consectetur Ante t Tincidunt</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>In HacHhabitasse Platea<br>Dictumst</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Ut Sagittis Consectetur Ante t Tincidunt</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>In HacHhabitasse Platea<br>Dictumst</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Consectetur Adipiscing Elit Curabitur Vel Ornare</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>","Latest News","","inherit","closed","closed","","738-revision-v1","","","2023-02-15 04:13:34","2023-02-15 04:13:34","","738","https://latitude39creative.com/?p=739","0","revision","","0");
INSERT INTO 7ja_posts VALUES("741","1","2023-02-15 04:22:08","2023-02-15 04:22:08","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						+(827) 123 - 456 - 7891					</p>\n				<h4>\n						Mail Us					\n				</h4>\n									<p>\n						info@evaniayogastudio.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 04:22:08","2023-02-15 04:22:08","","31","https://latitude39creative.com/?p=741","0","revision","","0");
INSERT INTO 7ja_posts VALUES("745","1","2023-02-15 04:34:47","2023-02-15 04:34:47","<h1>Social Media</h1>\n<h3>How to get more likes and shares</h3>\n<h4>engage audiences with increased Online Presence</h4>\n<h2>Learn About Our Social Media Marketing Strategy</h2>\n<img width=\"380\" height=\"380\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Pic-Intro-Service-social-media-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Pic-Intro-Service-social-media-1.png?w=380&amp;ssl=1 380w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Pic-Intro-Service-social-media-1.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Pic-Intro-Service-social-media-1.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 380px) 100vw, 380px\">\n<h3>What\'s Trending Now</h3>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisla.\n\nMauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam. Nulla euismod a mi eu elentum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet.\n<h3>Don\'t Miss Out</h3>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisla.\n\nMauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam. Nulla euismod a mi eu elentum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet.\n<h4>Company Strengths at a glance</h4>\n<h2>Our Strong Points</h2>\nLorem ipsum dolor sit amet, conse the all ctetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra olla augue. Maecenas consequat, dolor eget pharetra all imperdiet, dolor urna luctus urna, id porta tellus leo.\n\nFacebook\n92%\nInstagram\n89%\nLinkedin\n95%\nYouTube\n98%\n<img width=\"369\" height=\"369\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Bitmap-Copy-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-6.png?w=369&amp;ssl=1 369w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-6.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-6.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 369px) 100vw, 369px\">\n<img width=\"562\" height=\"562\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/pic-copy-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/pic-copy-2.png?w=562&amp;ssl=1 562w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/pic-copy-2.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/pic-copy-2.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 562px) 100vw, 562px\">\n<h3>Tailor-Made Digital Marketing</h3>\n<h2>Customized Social Media Strategy</h2>\nLorem ipsum dolor sit amet, consectetur adiop iscing elit, sed do eiusmod tempor inci didunt ult labore et dolore magna aliqua. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Euismod quis viverra nibh cras pulvinar. In massa tempor nec feugiat nisl pretium.Lorem ipsum dolor sit amet, consectetur adiop iscing elit, sed do eiusmod tempor inci didunt ult labore et dolore magna aliqua. the off ullam or corper dignissim cras tincidunt lobortis feugiat. Euismod quis viverra nibh cras pulvinar. In massa tempor nec feugiat nisl pretium.\n<a href=\"https://library.elementor.com/marketing-digital-agency/category/beyond-news/\" role=\"button\">\nmore at blog\n</a>\n<h3>Bespoke Marketing Plans</h3>\n<h2>We\'d love to share our knowledge and experience</h2>\nMaecenas consequat, dolor eget pharetra the all imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl purus risus, vel vestibulum semytu  commo vitae. Fusce vel arcu quam. anyti Nulla euismod a mi euot elentum.Lorem ipsum dolor sit amet, congt the off tetur adipiscing elit. Mauris iaculis nec justo frwac fermen quisque rhoncus nisi sed suscit curus. Donec porta metus porta.\n<h4>Stay Connected</h4>\nLorem ipsum dolor sittu olrot amet, consectetur adip scing elit. Proin rutrum euis the mod dolor, ultricies aliq luam ekolor.\n<ul>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n</ul>\n<h4>Think Ahead</h4>\nLorem ipsum dolor sittu olrot amet, consectetur adip scing elit. Proin rutrum euis the mod dolor, ultricies aliq luam ekolor.\n<ul>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n</ul>\n<h3>We Solve Real Problems</h3>\n<h2>what can we do for you?</h2>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bd174aeb-b623-40e5-a75c-6aa845ce06e9\" data-name=\"Layer 1\" width=\"74.7078\" height=\"66\" viewBox=\"0 0 74.7078 66\"><path id=\"b6f1f094-5902-49ca-a766-09584eb9daa6\" data-name=\"Fill-1-Copy-5\" d=\"M53.3653,19.386c-9.8693,32.2855,6.1235,31.8329-7.1389,41.2306A29.1943,29.1943,0,0,1,5.3387,53.4179a29.7533,29.7533,0,0,1,7.1385-41.23C25.74,2.79,63.2345-12.8994,53.3653,19.386\" style=\"fill-rule:evenodd;opacity:0.05\"></path><path d=\"M70.6063,52.798a4.0908,4.0908,0,0,0-3.3287,1.7228l-8.83-4.4155a.9765.9765,0,0,0-.5986-.0752,3.5841,3.5841,0,0,0,.0028-2.0507.9848.9848,0,0,0,.15.0206,1.0107,1.0107,0,0,0,.4468-.1053l9.6412-4.8216a4.061,4.061,0,0,0,2.5169.8869,4.1045,4.1045,0,1,0-3.7731-2.4958l-9.28,4.641a.976.976,0,0,0-.4212.4363,4,4,0,1,0,0,4.9171.9769.9769,0,0,0,.4211.4359l9.0026,4.5016a4.0466,4.0466,0,0,0-.0507.5027,4.1015,4.1015,0,1,0,4.1015-4.1008Zm0-14.99a2.05,2.05,0,1,1-2.05,2.05A2.053,2.053,0,0,1,70.6063,37.8081ZM54,51A2,2,0,1,1,56,49,2.0025,2.0025,0,0,1,54,51Zm16.6067,7.9492a2.0525,2.0525,0,0,1-2.05-2.05c0-.0278.0071-.0536.0082-.0811A.975.975,0,0,0,68.9506,55.7a2.0478,2.0478,0,1,1,1.6557,3.2492Z\" style=\"fill-rule:evenodd\"></path><path d=\"M50.6746,54.8864H32.1465a3.1252,3.1252,0,0,1-3.0877-3.1557V21.3828H70.2321V32.8006a1.029,1.029,0,1,0,2.0576,0V20.132l0-.0022,0-.0022V15.973a5.209,5.209,0,0,0-5.1463-5.2582H32.1465A5.2091,5.2091,0,0,0,27,15.973v4.1543l0,.0025,0,.0026V51.7307a5.2093,5.2093,0,0,0,5.1463,5.259H50.6746a1.0519,1.0519,0,0,0,0-2.1033ZM32.1465,12.8181H67.1434a3.1258,3.1258,0,0,1,3.0887,3.1549v2.9038H29.0588V15.973A3.125,3.125,0,0,1,32.1465,12.8181Z\" style=\"fill-rule:evenodd\"></path><circle cx=\"34\" cy=\"16\" r=\"1\"></circle><path d=\"M37,17a1,1,0,1,0-1-1A1.0006,1.0006,0,0,0,37,17Z\" style=\"fill-rule:evenodd\"></path><circle cx=\"40\" cy=\"16\" r=\"1\"></circle></svg>\n<h3>\n						Social Media</h3>\nLorem ipsum dolor sit orot amet, cons ctetur atrd piing elit.​\n\n<a href=\"https://library.elementor.com/marketing-digital-agency/social-media/\" role=\"button\">\nLearn More\n</a>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"b100d072-5c26-428c-aa94-fe2a7fbab69d\" data-name=\"Layer 1\" width=\"75\" height=\"66\" viewBox=\"0 0 75 66\"><path id=\"e8462590-5a8a-492b-9bee-67fe2f65f983\" data-name=\"Fill-1-Copy-6\" d=\"M53.3653,19.386c-9.8693,32.2855,6.1235,31.8329-7.1389,41.2306A29.1943,29.1943,0,0,1,5.3387,53.4179a29.7533,29.7533,0,0,1,7.1385-41.23C25.74,2.79,63.2345-12.8994,53.3653,19.386\" style=\"fill-rule:evenodd;opacity:0.05\"></path><path d=\"M36.3831,33.079a.97.97,0,0,0-1.0894.2261L32,36.7484l-3.2929-3.4433a.9746.9746,0,0,0-1.0894-.2261A1.0466,1.0466,0,0,0,27,34.0443v20.91A1.0224,1.0224,0,0,0,28,56h8a1.0224,1.0224,0,0,0,1-1.0454v-20.91A1.0459,1.0459,0,0,0,36.3831,33.079Zm-1.3823,20.83H29V36.5682l2.2929,2.3979a.9709.9709,0,0,0,1.415,0l2.2929-2.3979Z\" style=\"fill-rule:evenodd\"></path><path d=\"M45.7079,24.3128a.9566.9566,0,0,0-1.415,0l-4,4.2664A1.1022,1.1022,0,0,0,40,29.3334v25.6A1.0339,1.0339,0,0,0,41,56h8a1.0339,1.0339,0,0,0,1-1.0666v-25.6a1.099,1.099,0,0,0-.2929-.7542Zm2.2929,29.554H42V29.7752l3-3.2006,3.0008,3.2006Z\" style=\"fill-rule:evenodd\"></path><path d=\"M57.7079,20.3013a.9814.9814,0,0,0-1.415,0l-4,4.1182A1.0435,1.0435,0,0,0,52,25.1473V53.9706A1.0139,1.0139,0,0,0,53,55h8a1.0139,1.0139,0,0,0,1-1.0294V25.1473a1.04,1.04,0,0,0-.2929-.7278Zm2.2929,32.64H54V25.5737l3-3.0888,3.0008,3.0888Z\" style=\"fill-rule:evenodd\"></path><path d=\"M72.7071,16.3083A.9729.9729,0,0,0,72.0008,16H70a.9758.9758,0,0,0-.7071.3083l-4,4.21A1.08,1.08,0,0,0,65,21.2628V54.9474A1.0262,1.0262,0,0,0,66,56h8a1.0262,1.0262,0,0,0,1-1.0526v-35.79a1.0765,1.0765,0,0,0-.2929-.7442Zm.2937,37.5866H67V21.6988l3.4142-3.5937h1.1724l1.4142,1.4886Z\" style=\"fill-rule:evenodd\"></path><path d=\"M74,5H68a1,1,0,0,0-.7071,1.7069l2.3581,2.3579a1,1,0,0,0-.3974.2406l-8.4859,8.6538-3.3692-3.4359a1.0093,1.0093,0,0,0-1.4478,0l-7.462,7.61L45.1194,18.697a1.0091,1.0091,0,0,0-1.4478,0L32.1161,30.481l-3.3692-3.4359a1.0074,1.0074,0,0,0-1.4462,0,1.0557,1.0557,0,0,0,0,1.4757l4.0919,4.1736a1.01,1.01,0,0,0,1.4478,0L44.3951,20.91l3.37,3.4359a1.0083,1.0083,0,0,0,1.447,0l7.462-7.61,3.37,3.4358a1.01,1.01,0,0,0,1.447,0l9.2094-9.3915a1.0231,1.0231,0,0,0,.24-.4266l2.3521,2.352A1.0018,1.0018,0,0,0,74,13a1.0188,1.0188,0,0,0,.3831-.0766A1.0021,1.0021,0,0,0,75,11.9993V6A.999.999,0,0,0,74,5ZM73,9.5853,70.4141,7H73Z\" style=\"fill-rule:evenodd\"></path></svg>\n<h3>\n						SEO</h3>\nLorem ipsum dolor sit orot amet, cons ctetur atrd piing elit.​\n\n<a href=\"https://library.elementor.com/marketing-digital-agency/social-media/\" role=\"button\">\nLearn More\n</a>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"b6dcefca-0c8c-418c-b77f-efb4dc1647b0\" data-name=\"Layer 1\" width=\"75.3081\" height=\"66\" viewBox=\"0 0 75.3081 66\"><path id=\"b44b666d-68b2-4ca8-9bee-286f74bdea55\" data-name=\"Fill-1-Copy-9\" d=\"M53.3653,19.386c-9.8693,32.2855,6.1235,31.8329-7.1389,41.2306A29.1943,29.1943,0,0,1,5.3387,53.4179a29.7533,29.7533,0,0,1,7.1385-41.23C25.74,2.79,63.2345-12.8994,53.3653,19.386\" style=\"fill-rule:evenodd;opacity:0.05\"></path><path d=\"M36.1794,46.4411a1.0435,1.0435,0,0,0,.4161-2.0025,15.7286,15.7286,0,1,1,15.0229-1.3817,1.0409,1.0409,0,0,0-.2838,1.45,1.0538,1.0538,0,0,0,1.4567.2825,17.844,17.844,0,1,0-17.028,1.5658A1.0509,1.0509,0,0,0,36.1794,46.4411Z\" style=\"fill-rule:evenodd\"></path><path d=\"M74.29,28.3412H64.1086a1.0177,1.0177,0,0,0-.72,1.7379l4.2843,4.2844L53.2659,49.153l-7.5827-7.7842a1.0208,1.0208,0,0,0-1.4712,0L31.7346,54.178a1.0879,1.0879,0,0,0,0,1.51,1.0217,1.0217,0,0,0,1.4711,0L44.9472,43.6321l7.5843,7.7851a1.0188,1.0188,0,0,0,1.4695,0L69.1624,35.8528,73.57,40.2606a1.0206,1.0206,0,0,0,.72.2981.9981.9981,0,0,0,.3892-.078,1.0179,1.0179,0,0,0,.6289-.94V29.3593A1.0175,1.0175,0,0,0,74.29,28.3412Zm-1.018,8.7416-6.7056-6.7055H73.272Z\" style=\"fill-rule:evenodd\"></path><path d=\"M43,39a1.0284,1.0284,0,0,0,1-1.0555V36.9131a4.5186,4.5186,0,0,0,4-4.1977c0-2.0089-1.311-3.3611-4-4.0707V24.2758A2.4323,2.4323,0,0,1,46.0043,26.17a1.0361,1.0361,0,0,0,1.08.9765,1.0525,1.0525,0,0,0,.9121-1.1586A4.5182,4.5182,0,0,0,44,22.084V21.0563a1.0015,1.0015,0,1,0-2,0v1.0306a4.5188,4.5188,0,0,0-4,4.1986c0,2.0072,1.3114,3.36,4,4.07V34.724a2.4342,2.4342,0,0,1-2.0043-1.8949,1.0323,1.0323,0,0,0-1.0788-.9773A1.052,1.052,0,0,0,38.004,33.01,4.52,4.52,0,0,0,42,36.916v1.0285A1.0284,1.0284,0,0,0,43,39Zm3-6.2846c0,.91-.85,1.7022-2,2.0051V30.8419C45.3506,31.2539,46,31.8578,46,32.7154Zm-6-6.43c0-.911.85-1.703,1.9995-2.0059v3.8775C40.65,27.7447,40.0005,27.1412,40.0005,26.2855Z\" style=\"fill-rule:evenodd\"></path></svg>\n<h3>\n						PPC</h3>\nLorem ipsum dolor sit orot amet, cons ctetur atrd piing elit.​\n\n<a href=\"https://library.elementor.com/marketing-digital-agency/social-media/\" role=\"button\">\nLearn More\n</a>\n<a href=\"https://library.elementor.com/marketing-digital-agency/services/\" role=\"button\">\nMore Services\n</a>\n<h4>Want To Boost Your Business Today?</h4>\n<h2>drop us a line and keep in touch</h2>\n<a href=\"https://library.elementor.com/marketing-digital-agency/contact-us/\" role=\"button\">\nContact Us\n</a>\n<img width=\"539\" height=\"539\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Bitmap-Copy-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-3.png?w=539&amp;ssl=1 539w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-3.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-3.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 539px) 100vw, 539px\">","Blog","","inherit","closed","closed","","315-revision-v1","","","2023-02-15 04:34:47","2023-02-15 04:34:47","","315","https://latitude39creative.com/?p=745","0","revision","","0");
INSERT INTO 7ja_posts VALUES("746","1","2023-02-15 04:34:48","2023-02-15 04:34:48","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						+(827) 123 - 456 - 7891					</p>\n				<h4>\n						Mail Us					\n				</h4>\n									<p>\n						info@evaniayogastudio.com					</p>","Blog","","inherit","closed","closed","","315-revision-v1","","","2023-02-15 04:34:48","2023-02-15 04:34:48","","315","https://latitude39creative.com/?p=746","0","revision","","0");
INSERT INTO 7ja_posts VALUES("750","1","2023-02-15 04:36:47","2023-02-15 04:36:47","<h1>Latest Blog</h1>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n\n<label> Your name\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\"> </label>\n\n<label> Your email\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\"> </label>\n\n<label> Subject\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\"> </label>\n\n<label> Your message (optional)\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n\n<input type=\"submit\" value=\"Submit\">\n\n</form>\n<h3>Get In Touch.</h3>\n<h4>\n						Office Address</h4>\nDenver, Colorado\n<h4>\n						Call Us</h4>\n+(827) 123 - 456 - 7891\n<h4>\n						Mail Us</h4>\ninfo@evaniayogastudio.com","Blog","","inherit","closed","closed","","315-revision-v1","","","2023-02-15 04:36:47","2023-02-15 04:36:47","","315","https://latitude39creative.com/?p=750","0","revision","","0");
INSERT INTO 7ja_posts VALUES("752","1","2023-02-15 15:00:55","2023-02-15 15:00:55","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:Ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:Ben@latitude39creative.com\" >\n						Mail Us					</a>\n				</h4>\n									<p>\n						Ben@latitude39creative.com					</p>","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-15 15:00:55","2023-02-15 15:00:55","","649","https://latitude39creative.com/?p=752","0","revision","","0");
INSERT INTO 7ja_posts VALUES("753","1","2023-02-15 15:01:06","2023-02-15 15:01:06","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n								</a>\n				<h4>\n					<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n						Mail Us					</a>\n				</h4>\n									<p>\n						Ben@latitude39creative.com					</p>","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-15 15:01:06","2023-02-15 15:01:06","","649","https://latitude39creative.com/?p=753","0","revision","","0");
INSERT INTO 7ja_posts VALUES("754","1","2023-02-15 15:02:06","2023-02-15 15:02:06","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n								</a>\n				<h4>\n					<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n						Email Us					</a>\n				</h4>\n									<p>\n						Ben@latitude39creative.com					</p>","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-15 15:02:06","2023-02-15 15:02:06","","649","https://latitude39creative.com/?p=754","0","revision","","0");
INSERT INTO 7ja_posts VALUES("802","1","2023-02-15 16:01:37","2023-02-15 16:01:37","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2023-02-15 16:01:37","2023-02-15 16:01:37","","287","https://latitude39creative.com/?p=802","0","revision","","0");
INSERT INTO 7ja_posts VALUES("803","1","2023-02-15 16:01:38","2023-02-15 16:01:38","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2023-02-15 16:01:38","2023-02-15 16:01:38","","287","https://latitude39creative.com/?p=803","0","revision","","0");
INSERT INTO 7ja_posts VALUES("813","1","2023-02-15 16:11:55","2023-02-15 16:11:55","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 16:11:55","2023-02-15 16:11:55","","31","https://latitude39creative.com/?p=813","0","revision","","0");
INSERT INTO 7ja_posts VALUES("814","1","2023-02-15 16:12:04","2023-02-15 16:12:04","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 16:12:04","2023-02-15 16:12:04","","31","https://latitude39creative.com/?p=814","0","revision","","0");
INSERT INTO 7ja_posts VALUES("815","1","2023-02-15 16:12:34","2023-02-15 16:12:34","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 16:12:34","2023-02-15 16:12:34","","31","https://latitude39creative.com/?p=815","0","revision","","0");
INSERT INTO 7ja_posts VALUES("832","1","2023-02-15 17:38:18","2023-02-15 17:38:18","","latitude61n","","inherit","open","closed","","latitude61n","","","2023-02-15 17:38:18","2023-02-15 17:38:18","","103","https://latitude39creative.com/wp-content/uploads/2023/02/latitude61n.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("839","1","2023-02-15 17:46:41","2023-02-15 17:46:41","","FitCFO","","inherit","open","closed","","fitcfo","","","2023-02-15 17:46:41","2023-02-15 17:46:41","","103","https://latitude39creative.com/wp-content/uploads/2023/02/FitCFO.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("847","1","2023-02-15 18:09:06","2023-02-15 18:09:06","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-15 18:09:06","2023-02-15 18:09:06","","601","https://latitude39creative.com/?p=847","0","revision","","0");
INSERT INTO 7ja_posts VALUES("856","1","2023-02-15 18:54:17","2023-02-15 18:54:17","<h2>Blog</h2>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 18:54:17","2023-02-15 18:54:17","","31","https://latitude39creative.com/?p=856","0","revision","","0");
INSERT INTO 7ja_posts VALUES("857","1","2023-02-15 18:55:10","2023-02-15 18:55:10","<h2>Blog</h2>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 18:55:10","2023-02-15 18:55:10","","31","https://latitude39creative.com/?p=857","0","revision","","0");
INSERT INTO 7ja_posts VALUES("858","1","2023-02-15 18:55:34","2023-02-15 18:55:34","<h2>Blog</h2>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 18:55:34","2023-02-15 18:55:34","","31","https://latitude39creative.com/?p=858","0","revision","","0");
INSERT INTO 7ja_posts VALUES("859","1","2023-02-15 18:56:14","2023-02-15 18:56:14","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-15 18:56:14","2023-02-15 18:56:14","","601","https://latitude39creative.com/?p=859","0","revision","","0");
INSERT INTO 7ja_posts VALUES("863","1","2023-04-16 14:39:50","2023-04-16 14:39:50","","Glass wallet logo","","inherit","open","closed","","glass-wallet-logo","","","2023-04-16 14:39:50","2023-04-16 14:39:50","","103","https://latitude39creative.com/wp-content/uploads/2023/04/Glass-wallet-logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("864","1","2023-04-16 14:42:27","2023-04-16 14:42:27","","accounting-cornerstone-1-copy","","inherit","open","closed","","accounting-cornerstone-1-copy","","","2023-04-16 14:42:27","2023-04-16 14:42:27","","103","https://latitude39creative.com/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts VALUES("865","1","2023-04-16 14:49:06","2023-04-16 14:49:06","","GW screenshot","","inherit","open","closed","","gw-screenshot","","","2023-04-16 14:49:06","2023-04-16 14:49:06","","103","https://latitude39creative.com/wp-content/uploads/2023/04/GW-screenshot.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("885","1","2023-06-01 23:58:21","2023-06-01 23:58:21","","Latitude-Logo","","inherit","open","closed","","latitude-logo-2","","","2023-06-01 23:58:21","2023-06-01 23:58:21","","169","https://latitude39creative.com/wp-content/uploads/2023/06/Latitude-Logo.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts VALUES("888","1","2023-06-02 00:04:52","2023-06-02 00:04:52","","Latitude-Logo-02-1","","inherit","open","closed","","latitude-logo-02-1","","","2023-06-02 00:04:52","2023-06-02 00:04:52","","169","https://latitude39creative.com/wp-content/uploads/2023/06/Latitude-Logo-02-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("906","1","2023-06-23 22:26:52","2023-06-23 22:26:52","","Elementor-Logo-Full-Red","","inherit","open","closed","","elementor-logo-full-red","","","2023-06-23 22:26:52","2023-06-23 22:26:52","","169","https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("915","1","2023-08-01 21:33:59","2023-08-01 21:33:59","<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl. Mauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Nulla euismod a mi eu elementum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet velit gravida tempor et quis mauris. Vestibulum fermentum est nulla, a accumsan libero ultrices nec.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Etiam erat quam, pellentesque in maximus vitae, sollicitudin sed dui. Fusce blandit turpis nec aliquam pharetra. Suspendisse imperdiet molestie imperdiet. Pellentesque imperdiet magna tincidunt, ultricies tellus at, aliquet sapien.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p><strong>Class aptent taciti socios<br></strong>Lkad litora torquent per conubia nostra, per inceptos himenaeos. Praesent ut libero a ipsum aliquam accumsan. Maecenas ut arcu in justo euismod auctor. Donec facilisis efficitur ante a suscipit. Mauris maximus eu odio ac euismod. Maecenas faucibus turpis sed posuere volutpat. Sed tincidunt luctus massa ac aliquam. Integer tincidunt purus et diam dapibus, a rhoncus magna congue. Ut ut turpis suscipit massa mollis gravida. Proin ut dui in libero aliquet semper.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p><strong>Morbi a felis sapien</strong><br>bibendum hendrerit elit, vitae posuere sem pharetra nec. Morbi suscipit suscipit luctus. Morbi posuere augue eu tristique mollis. Suspendisse fringilla venenatis placerat. Nunc id sapien pretium urna bibendum consectetur. Quisque blandit metus arcu, id ornare magna molestie nec. Proin malesuada a lacus nec mollis. Aliquam pellentesque purus ac nibh pharetra gravida.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Vestibulum quis elit rhoncus, ultricies dolor at, gravida orci. Curabitur ut luctus felis. Sed suscipit ut velit sit amet semper. Donec lorem sem, feugiat eget laoreet in, semper non elit. Ut accumsan lacus eu tellus venenatis tincidunt. Suspendisse at mauris.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Nulla vel ante eu leo rhoncus condimentum vitae et elit. Etiam vitae elementum orci. Aliquam quam turpis, malesuada non ultrices ac, mollis ut dui. Donec eu nisl ut sapien feugiat accumsan ut eget ligula. Phasellus pharetra gravida est id pellentesque. Aliquam erat volutpat. Phasellus venenatis ipsum ac metus sagittis bibendum.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>In sed rutrum magna. Nullam euismod metus ac sagittis viverra. Vivamus posuere vehicula risus a eleifend. Sed vel metus lacus. In hac habitasse platea dictumst. Morbi lacinia fermentum mi eget auctor. Aenean vehicula odio justo, ut gravida ex porttitor eu. Fusce sed blandit mauris, in tempus nisl. Sed rutrum elit non ante rhoncus, vel luctus neque pretium.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p><strong>Cras nec magna nec neque pulvinar commodo.</strong><br>Duis libero mauris, elementum et dui vitae, malesuada egestas nisi. Maecenas dignissim consequat tellus quis dignissim. Ut ac convallis tellus, semper sodales erat. Nam ac nunc blandit, volutpat nunc a, accumsan velit. Praesent tincidunt purus iaculis diam posuere, at condimentum urna imperdiet. Nam sit amet pulvinar massa, id hendrerit ante. Vestibulum tellus tellus, eleifend nec placerat tempus, tincidunt at orci. Morbi mollis, justo aliquam venenatis euismod, diam ante sollicitudin lacus, ac fermentum sapien velit quis magna. Integer rutrum lacinia ullamcorper. Vivamus sit amet bibendum augue, non luctus diam. Cras nisi est, ultricies eget ipsum ut, viverra facilisis tortor.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>","What\'s in a Brand?","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","75-revision-v1","","","2023-08-01 21:33:59","2023-08-01 21:33:59","","75","https://latitude39creative.com/?p=915","0","revision","","0");
INSERT INTO 7ja_posts VALUES("916","1","2023-08-01 21:33:59","2023-08-01 21:33:59","<p><!-- wp:paragraph --></p>\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.</p>\n<p>1.  Recognition and Recall:</p>\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.</p>\n<p>2. Building Trust and Credibility:</p>\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.</p>\n<p>3.  Customer Loyalty:</p>\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.</p>\n<p>4. <strong>Competitive Advantage:</strong></p>\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.</p>\n<p>5.  <strong>Employee Morale and Pride:</strong></p>\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.</p>\n<p>6. <strong>Brand Extension and Diversification:</strong></p>\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.</p>\n<p>7. <strong>Price Premium:</strong></p>\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.</p>\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.</p>\n<p><!-- /wp:paragraph --></p>","What\'s in a Brand?","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","75-revision-v1","","","2023-08-01 21:33:59","2023-08-01 21:33:59","","75","https://latitude39creative.com/?p=916","0","revision","","0");
INSERT INTO 7ja_posts VALUES("917","1","2023-08-01 21:36:27","2023-08-01 21:36:27","","kristian-egelund-wwqRpSNBPq4-unsplash","","inherit","open","closed","","kristian-egelund-wwqrpsnbpq4-unsplash","","","2023-08-01 21:36:27","2023-08-01 21:36:27","","75","https://latitude39creative.com/wp-content/uploads/2022/11/kristian-egelund-wwqRpSNBPq4-unsplash.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("918","1","2023-08-01 21:37:04","2023-08-01 21:37:04","<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.</p>\n<p>1.  Recognition and Recall:</p>\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.</p>\n<p>2. Building Trust and Credibility:</p>\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.</p>\n<p>3.  Customer Loyalty:</p>\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.</p>\n<p>4. <strong>Competitive Advantage:</strong></p>\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.</p>\n<p>5.  <strong>Employee Morale and Pride:</strong></p>\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.</p>\n<p>6. <strong>Brand Extension and Diversification:</strong></p>\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.</p>\n<p>7. <strong>Price Premium:</strong></p>\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.</p>\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>","What\'s in a Brand?","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","75-revision-v1","","","2023-08-01 21:37:04","2023-08-01 21:37:04","","75","https://latitude39creative.com/?p=918","0","revision","","0");
INSERT INTO 7ja_posts VALUES("920","1","2023-08-01 21:44:14","2023-08-01 21:44:14","<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.</p>\n<p>1.  Recognition and Recall:</p>\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.</p>\n<p>2. Building Trust and Credibility:</p>\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.</p>\n<p>3.  Customer Loyalty:</p>\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.</p>\n<p>4. <strong>Competitive Advantage:</strong></p>\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.</p>\n<p>5.  <strong>Employee Morale and Pride:</strong></p>\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.</p>\n<p>6. <strong>Brand Extension and Diversification:</strong></p>\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.</p>\n<p>7. <strong>Price Premium:</strong></p>\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.</p>\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>","What\'s in a Brand?","In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever.","inherit","closed","closed","","75-revision-v1","","","2023-08-01 21:44:14","2023-08-01 21:44:14","","75","https://latitude39creative.com/?p=920","0","revision","","0");
INSERT INTO 7ja_posts VALUES("921","1","2023-08-01 21:52:06","2023-08-01 21:52:06","","Screenshot 2023-08-01 3.49.41 PM - Display 2 (1)","","inherit","open","closed","","screenshot-2023-08-01-3-49-41-pm-display-2-1","","","2023-08-01 21:52:06","2023-08-01 21:52:06","","103","https://latitude39creative.com/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("925","1","2023-08-01 21:56:40","2023-08-01 21:56:40","","Screenshot 2023-08-01 3.55.16 PM - Display 2","","inherit","open","closed","","screenshot-2023-08-01-3-55-16-pm-display-2","","","2023-08-01 21:56:40","2023-08-01 21:56:40","","103","https://latitude39creative.com/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("947","1","2023-09-11 16:39:14","2023-09-11 16:39:14","","Screenshot 2023-09-11 10.34.18 AM - Display 2","","inherit","open","closed","","screenshot-2023-09-11-10-34-18-am-display-2","","","2023-09-11 16:39:14","2023-09-11 16:39:14","","169","https://latitude39creative.com/wp-content/uploads/2023/09/Screenshot-2023-09-11-10.34.18-AM-Display-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("949","1","2023-09-18 21:40:13","2023-09-18 21:40:13","","Social image","","inherit","open","closed","","social-image","","","2023-09-18 21:40:13","2023-09-18 21:40:13","","169","https://latitude39creative.com/wp-content/uploads/2023/09/Social-image.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("950","1","2023-09-18 21:42:31","2023-09-18 21:42:31","{\n    \"site_icon\": {\n        \"value\": 949,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-09-18 21:42:31\"\n    }\n}","","","publish","closed","closed","","7d868b05-8842-45a8-8213-4ad79e521524","","","2023-09-18 21:42:31","2023-09-18 21:42:31","","0","https://latitude39creative.com/7d868b05-8842-45a8-8213-4ad79e521524/","0","customize_changeset","","0");
INSERT INTO 7ja_posts VALUES("952","1","2023-09-18 21:48:15","2023-09-18 21:48:15","","Favicon 512","","inherit","open","closed","","favicon-512","","","2023-09-18 21:48:15","2023-09-18 21:48:15","","0","https://latitude39creative.com/wp-content/uploads/2023/09/Favicon-512.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("953","1","2023-09-18 21:48:19","2023-09-18 21:48:19","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/cropped-Favicon-512.png","cropped-Favicon-512.png","","inherit","open","closed","","cropped-favicon-512-png","","","2023-09-18 21:48:19","2023-09-18 21:48:19","","0","https://latitude39creative.com/wp-content/uploads/2023/09/cropped-Favicon-512.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("954","1","2023-09-18 21:48:36","2023-09-18 21:48:36","","Untitled design","","inherit","open","closed","","untitled-design","","","2023-09-18 21:48:36","2023-09-18 21:48:36","","0","https://latitude39creative.com/wp-content/uploads/2023/09/Untitled-design.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("955","1","2023-09-18 21:48:41","2023-09-18 21:48:41","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/cropped-Untitled-design.png","cropped-Untitled-design.png","","inherit","open","closed","","cropped-untitled-design-png","","","2023-09-18 21:48:41","2023-09-18 21:48:41","","0","https://latitude39creative.com/wp-content/uploads/2023/09/cropped-Untitled-design.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("956","1","2023-09-18 21:49:06","2023-09-18 21:49:06","{\n    \"site_icon\": {\n        \"value\": 953,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-09-18 21:49:06\"\n    }\n}","","","publish","closed","closed","","6bb50087-c04d-4cb0-be42-ad9fe21149f6","","","2023-09-18 21:49:06","2023-09-18 21:49:06","","0","https://latitude39creative.com/6bb50087-c04d-4cb0-be42-ad9fe21149f6/","0","customize_changeset","","0");
INSERT INTO 7ja_posts VALUES("958","1","2023-09-18 21:54:47","2023-09-18 21:54:47","{\n    \"site_icon\": {\n        \"value\": 961,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-09-18 21:54:47\"\n    }\n}","","","publish","closed","closed","","9399d96c-c717-4e6e-9da3-418cdd4aecee","","","2023-09-18 21:54:47","2023-09-18 21:54:47","","0","https://latitude39creative.com/?p=958","0","customize_changeset","","0");
INSERT INTO 7ja_posts VALUES("960","1","2023-09-18 21:54:25","2023-09-18 21:54:25","","Untitled design (1)","","inherit","open","closed","","untitled-design-1","","","2023-09-18 21:54:25","2023-09-18 21:54:25","","0","https://latitude39creative.com/wp-content/uploads/2023/09/Untitled-design-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("961","1","2023-09-18 21:54:32","2023-09-18 21:54:32","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/cropped-Untitled-design-1.png","cropped-Untitled-design-1.png","","inherit","open","closed","","cropped-untitled-design-1-png","","","2023-09-18 21:54:32","2023-09-18 21:54:32","","0","https://latitude39creative.com/wp-content/uploads/2023/09/cropped-Untitled-design-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("970","1","2023-11-14 00:06:12","2023-11-14 00:06:12","<h2>About</h2>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5><p> </p>		\n															<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Projects					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Some of Our Clients.</h3>		\n															<img width=\"460\" height=\"80\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Markpianoman.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/Markpianoman.png?w=460&amp;ssl=1 460w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/Markpianoman.png?resize=300%2C52&amp;ssl=1 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />															\n															<img width=\"642\" height=\"286\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/blueprintfinlogo.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/blueprintfinlogo.webp?w=642&amp;ssl=1 642w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/blueprintfinlogo.webp?resize=300%2C134&amp;ssl=1 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"800\" height=\"450\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/BFD-main-logo.webp?w=1024&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/BFD-main-logo.webp?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/BFD-main-logo.webp?resize=768%2C432&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"797\" height=\"172\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/PivotAll_Web-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/PivotAll_Web-Logo.png?w=797&amp;ssl=1 797w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/PivotAll_Web-Logo.png?resize=300%2C65&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/PivotAll_Web-Logo.png?resize=768%2C166&amp;ssl=1 768w\" sizes=\"(max-width: 797px) 100vw, 797px\" />															\n															<img width=\"600\" height=\"110\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/GW-logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/GW-logo.png?w=600&amp;ssl=1 600w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/GW-logo.png?resize=300%2C55&amp;ssl=1 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:06:12","2023-11-14 00:06:12","","147","https://latitude39creative.com/?p=970","0","revision","","0");
INSERT INTO 7ja_posts VALUES("971","1","2023-11-14 00:06:12","2023-11-14 00:06:12","<h2>About</h2>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5><p> </p>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:06:12","2023-11-14 00:06:12","","147","https://latitude39creative.com/?p=971","0","revision","","0");
INSERT INTO 7ja_posts VALUES("972","1","2023-11-14 00:09:02","2023-11-14 00:09:02","<h2>About</h2>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5><p> </p>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:09:02","2023-11-14 00:09:02","","147","https://latitude39creative.com/?p=972","0","revision","","0");
INSERT INTO 7ja_posts VALUES("973","1","2023-11-14 00:09:04","2023-11-14 00:09:04","<h2>About</h2>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5><p> </p>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:09:04","2023-11-14 00:09:04","","147","https://latitude39creative.com/?p=973","0","revision","","0");
INSERT INTO 7ja_posts VALUES("974","1","2023-11-14 00:09:04","2023-11-14 00:09:04","<h2>About</h2>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get, the more real your business will become.</h5><h5>This will help us create a step-by-step plan that will make that future an actual reality.</h5>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:09:04","2023-11-14 00:09:04","","147","https://latitude39creative.com/?p=974","0","revision","","0");
INSERT INTO 7ja_posts VALUES("976","1","2023-11-14 00:48:11","2023-11-14 00:48:11","<h1>Latest Blog</h1>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n\n<label> Your name\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\"> </label>\n\n<label> Your email\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\"> </label>\n\n<label> Subject\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\"> </label>\n\n<label> Your message (optional)\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n\n<input type=\"submit\" value=\"Submit\">\n\n</form>\n<h3>Get In Touch.</h3>\n<h4>\n						Office Address</h4>\nDenver, Colorado\n<h4>\n						Call Us</h4>\n+(827) 123 - 456 - 7891\n<h4>\n						Mail Us</h4>\ninfo@evaniayogastudio.com","Blog","Website ideas and creative inspiration","inherit","closed","closed","","315-revision-v1","","","2023-11-14 00:48:11","2023-11-14 00:48:11","","315","https://latitude39creative.com/?p=976","0","revision","","0");
INSERT INTO 7ja_posts VALUES("978","1","2023-11-14 01:15:14","2023-11-14 01:15:14","","nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash","","inherit","open","closed","","nisonco-pr-and-seo-yirdur6hivq-unsplash","","","2023-11-14 01:15:14","2023-11-14 01:15:14","","63","https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts VALUES("979","1","2023-11-14 01:17:31","2023-11-14 01:17:31","\n\n\n\n\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is SEO?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO, or Search Engine Optimization, is a set of practices aimed at improving a website\'s visibility and ranking in search engine results pages (SERPs). The primary goal of SEO is to increase organic (non-paid) traffic to a website by optimizing various elements, both on the website itself (on-page SEO) and outside the website (off-page SEO).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">Here are some key aspects of SEO:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Keyword Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Identifying and using relevant keywords in the content, meta tags, and other elements to match user search queries.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Content Quality:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating high-quality, valuable, and relevant content that satisfies user intent and provides useful information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>On-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing elements on the website, including title tags, meta descriptions, header tags, URL structure, and internal linking.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Off-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Building a reputable online presence through activities such as link building, social media engagement, and influencer outreach.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Technical SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensuring the website is technically sound and accessible to search engines. This includes optimizing page speed, implementing schema markup, and having a mobile-friendly design.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>User Experience (UX):</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating a positive user experience to encourage visitors to stay on the site, engage with content, and reduce bounce rates.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Local SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing a website to appear in local search results, is particularly important for businesses serving a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Analytics and Monitoring:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Using tools like Google Analytics and Google Search Console to track website performance, monitor traffic, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is dynamic and evolves as search engine algorithms change. It requires ongoing efforts to adapt to these changes, stay updated with best practices, and maintain or improve search rankings. While paid advertising can generate quick results, SEO focuses on long-term, sustainable strategies to increase a website\'s visibility and attract organic traffic. That\'s where <a href=\"http://Latitude39creative.com\">Latitude39creative</a> comes in.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>How Does SEO Work?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO works through a combination of on-page, off-page, and technical strategies aimed at optimizing a website to improve its visibility and ranking on search engine results pages (SERPs). Here\'s a breakdown of how SEO works:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">1. <strong>Keyword Research:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO starts with identifying relevant keywords related to your content, products, or services. This involves understanding what terms your target audience is likely to use when searching for information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">2. <strong>On-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Content Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create high-quality, relevant, and engaging content that incorporates the identified keywords naturally.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\">Use header tags, meta titles, and meta descriptions to provide structure and information to search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>URL Structure:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Develop SEO-friendly URLs that include keywords and provide a clear structure for both users and search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Internal Linking:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Link relevant pages within your website to improve navigation and distribute link equity.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Mobile Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website is responsive and provides a good user experience on mobile devices.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">3. <strong>Off-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Link Building:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Acquire high-quality backlinks from reputable websites. Quality and relevance are crucial in link building.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Social Signals:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Maintain an active presence on social media platforms, as social signals can indirectly impact search rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Online Reputation Management:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Encourage positive online reviews and manage your online reputation.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">4. <strong>Technical SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Page Speed Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website\'s loading speed to improve user experience and meet search engine standards.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>XML Sitemaps:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create and submit XML sitemaps to help search engines understand the structure of your website.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>SSL Certificates:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website has an SSL certificate for a secure connection.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Schema Markup:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Implement schema markup to provide search engines with more information about your content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">5. <strong>User Experience (UX):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create a positive user experience by making your website easy to navigate, ensuring fast load times, and delivering valuable content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">6. <strong>Analytics and Monitoring:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Use tools like Google Analytics and Google Search Console to monitor website performance, track user behavior, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">7. <strong>Content Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Regularly update and add new content to keep your website fresh and relevant.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">8. <strong>Algorithm Changes and Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Stay informed about changes in search engine algorithms and adjust your strategy accordingly.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">9. <strong>Local SEO (if applicable):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website for local search if you have a physical presence or serve a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">10. <strong>Continuous Optimization:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO is an ongoing process. Regularly audit your website, analyze performance data, and adapt your strategy based on results and industry trends.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">By implementing these strategies, SEO aims to provide the best possible answer to a user\'s search, making your website more visible and relevant in search engine results. Keep in mind that SEO is a long-term strategy, and results may take time to become evident.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Does SEO REALLY matter?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is crucial for several reasons, and its importance has grown significantly as the internet has become an integral part of people\'s lives. Here are key reasons why SEO is important:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Increased Visibility and Traffic:</strong></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO helps improve a website\'s visibility in search engine results. When your site ranks higher, it\'s more likely to be seen by users, resulting in increased organic traffic.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     2. <strong>Credibility and Trust:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Websites that appear at the top of search results are often perceived as more credible and trustworthy by users. Establishing a strong online presence through SEO contributes to building trust with your audience.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     3. <strong>Better User Experience:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO isn\'t just about search engines; it\'s also about enhancing the user experience. By optimizing for both search engines and users, you create a more seamless, intuitive, and enjoyable experience for visitors.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     4. <strong>Cost-Effective Marketing:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Compared to paid advertising, SEO is a cost-effective way to attract organic traffic. While it requires time and effort, the long-term benefits often outweigh the costs associated with other marketing channels.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     5. <strong>Higher Conversion Rates:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Users who find your website through organic search are often actively looking for information, products, or services. This targeted traffic is more likely to convert into leads or customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     6. <strong>Adaptation to Changing Trends:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO encourages staying updated with industry trends and changes in search engine algorithms. This adaptability is crucial for maintaining and improving search rankings over time.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     7. <strong>Local Business Visibility:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">For local businesses, local SEO is essential for appearing in local search results. This is particularly important for attracting nearby customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     8. <strong>Insights into Customer Behavior:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO tools and analytics provide valuable data about user behavior, preferences, and the effectiveness of your strategies. This information can inform decision-making and future optimization efforts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     9. <strong>Competitive Advantage:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">If your competitors are investing in SEO and you\'re not, you risk losing potential customers to them. Conversely, effective SEO can help you outperform competitors in search engine rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     10. <strong>Global Reach:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO enables businesses to reach a global audience. Even small businesses can compete on a larger scale by optimizing their online presence for international search.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">In summary, SEO is not just about improving search rankings; it\'s a holistic approach to creating a user-friendly, credible, and visible online presence. By investing in SEO, businesses can strengthen their digital footprint and connect with their target audience in a more meaningful way. <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Contact Us</a> to see how we can help you with your SEO.</p>\n<!-- /wp:paragraph -->","Case Study: What is SEO, how does it work, and does it really matter?","What is SEO? Does it work... Do I really need it?","inherit","closed","closed","","63-revision-v1","","","2023-11-14 01:17:31","2023-11-14 01:17:31","","63","https://latitude39creative.com/?p=979","0","revision","","0");
INSERT INTO 7ja_posts VALUES("980","1","2023-11-14 01:18:01","2023-11-14 01:18:01","\n\n\n\n\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is SEO?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO, or Search Engine Optimization, is a set of practices aimed at improving a website\'s visibility and ranking in search engine results pages (SERPs). The primary goal of SEO is to increase organic (non-paid) traffic to a website by optimizing various elements, both on the website itself (on-page SEO) and outside the website (off-page SEO).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">Here are some key aspects of SEO:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Keyword Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Identifying and using relevant keywords in the content, meta tags, and other elements to match user search queries.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Content Quality:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating high-quality, valuable, and relevant content that satisfies user intent and provides useful information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>On-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing elements on the website, including title tags, meta descriptions, header tags, URL structure, and internal linking.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Off-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Building a reputable online presence through activities such as link building, social media engagement, and influencer outreach.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Technical SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensuring the website is technically sound and accessible to search engines. This includes optimizing page speed, implementing schema markup, and having a mobile-friendly design.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>User Experience (UX):</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating a positive user experience to encourage visitors to stay on the site, engage with content, and reduce bounce rates.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Local SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing a website to appear in local search results, is particularly important for businesses serving a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Analytics and Monitoring:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Using tools like Google Analytics and Google Search Console to track website performance, monitor traffic, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is dynamic and evolves as search engine algorithms change. It requires ongoing efforts to adapt to these changes, stay updated with best practices, and maintain or improve search rankings. While paid advertising can generate quick results, SEO focuses on long-term, sustainable strategies to increase a website\'s visibility and attract organic traffic. That\'s where <a href=\"http://Latitude39creative.com\">Latitude39creative</a> comes in.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>How Does SEO Work?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO works through a combination of on-page, off-page, and technical strategies aimed at optimizing a website to improve its visibility and ranking on search engine results pages (SERPs). Here\'s a breakdown of how SEO works:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">1. <strong>Keyword Research:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO starts with identifying relevant keywords related to your content, products, or services. This involves understanding what terms your target audience is likely to use when searching for information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">2. <strong>On-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Content Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create high-quality, relevant, and engaging content that incorporates the identified keywords naturally.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\">Use header tags, meta titles, and meta descriptions to provide structure and information to search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>URL Structure:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Develop SEO-friendly URLs that include keywords and provide a clear structure for both users and search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Internal Linking:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Link relevant pages within your website to improve navigation and distribute link equity.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Mobile Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website is responsive and provides a good user experience on mobile devices.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">3. <strong>Off-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Link Building:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Acquire high-quality backlinks from reputable websites. Quality and relevance are crucial in link building.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Social Signals:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Maintain an active presence on social media platforms, as social signals can indirectly impact search rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Online Reputation Management:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Encourage positive online reviews and manage your online reputation.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">4. <strong>Technical SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Page Speed Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website\'s loading speed to improve user experience and meet search engine standards.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>XML Sitemaps:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create and submit XML sitemaps to help search engines understand the structure of your website.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>SSL Certificates:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website has an SSL certificate for a secure connection.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Schema Markup:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Implement schema markup to provide search engines with more information about your content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">5. <strong>User Experience (UX):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create a positive user experience by making your website easy to navigate, ensuring fast load times, and delivering valuable content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">6. <strong>Analytics and Monitoring:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Use tools like Google Analytics and Google Search Console to monitor website performance, track user behavior, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">7. <strong>Content Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Regularly update and add new content to keep your website fresh and relevant.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">8. <strong>Algorithm Changes and Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Stay informed about changes in search engine algorithms and adjust your strategy accordingly.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">9. <strong>Local SEO (if applicable):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website for local search if you have a physical presence or serve a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">10. <strong>Continuous Optimization:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO is an ongoing process. Regularly audit your website, analyze performance data, and adapt your strategy based on results and industry trends.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">By implementing these strategies, SEO aims to provide the best possible answer to a user\'s search, making your website more visible and relevant in search engine results. Keep in mind that SEO is a long-term strategy, and results may take time to become evident.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Does SEO REALLY matter?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is crucial for several reasons, and its importance has grown significantly as the internet has become an integral part of people\'s lives. Here are key reasons why SEO is important:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Increased Visibility and Traffic:</strong></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO helps improve a website\'s visibility in search engine results. When your site ranks higher, it\'s more likely to be seen by users, resulting in increased organic traffic.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     2. <strong>Credibility and Trust:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Websites that appear at the top of search results are often perceived as more credible and trustworthy by users. Establishing a strong online presence through SEO contributes to building trust with your audience.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     3. <strong>Better User Experience:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO isn\'t just about search engines; it\'s also about enhancing the user experience. By optimizing for both search engines and users, you create a more seamless, intuitive, and enjoyable experience for visitors.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     4. <strong>Cost-Effective Marketing:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Compared to paid advertising, SEO is a cost-effective way to attract organic traffic. While it requires time and effort, the long-term benefits often outweigh the costs associated with other marketing channels.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     5. <strong>Higher Conversion Rates:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Users who find your website through organic search are often actively looking for information, products, or services. This targeted traffic is more likely to convert into leads or customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     6. <strong>Adaptation to Changing Trends:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO encourages staying updated with industry trends and changes in search engine algorithms. This adaptability is crucial for maintaining and improving search rankings over time.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     7. <strong>Local Business Visibility:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">For local businesses, local SEO is essential for appearing in local search results. This is particularly important for attracting nearby customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     8. <strong>Insights into Customer Behavior:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO tools and analytics provide valuable data about user behavior, preferences, and the effectiveness of your strategies. This information can inform decision-making and future optimization efforts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     9. <strong>Competitive Advantage:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">If your competitors are investing in SEO and you\'re not, you risk losing potential customers to them. Conversely, effective SEO can help you outperform competitors in search engine rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     10. <strong>Global Reach:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO enables businesses to reach a global audience. Even small businesses can compete on a larger scale by optimizing their online presence for international search.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">In summary, SEO is not just about improving search rankings; it\'s a holistic approach to creating a user-friendly, credible, and visible online presence. By investing in SEO, businesses can strengthen their digital footprint and connect with their target audience in a more meaningful way. <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Contact Us</a> to see how we can help you with your SEO.</p>\n<!-- /wp:paragraph -->","What is SEO, how does it work, and does it really matter?","What is SEO? Does it work... Do I really need it?","inherit","closed","closed","","63-revision-v1","","","2023-11-14 01:18:01","2023-11-14 01:18:01","","63","https://latitude39creative.com/?p=980","0","revision","","0");
INSERT INTO 7ja_posts VALUES("982","1","2024-04-16 15:06:37","2024-04-16 15:06:37","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2024-04-16 15:06:37","2024-04-16 15:06:37","","287","https://latitude39creative.com/?p=982","0","revision","","0");
INSERT INTO 7ja_posts VALUES("983","1","2024-04-16 15:06:37","2024-04-16 15:06:37","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2024-04-16 15:06:37","2024-04-16 15:06:37","","287","https://latitude39creative.com/?p=983","0","revision","","0");
INSERT INTO 7ja_posts VALUES("984","1","2024-04-16 15:06:37","2024-04-16 15:06:37","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://latitude39creative.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:helloben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:helloben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						helloben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2024-04-16 15:06:37","2024-04-16 15:06:37","","287","https://latitude39creative.com/?p=984","0","revision","","0");
INSERT INTO 7ja_posts VALUES("985","1","2024-04-16 15:14:00","2024-04-16 15:14:00","<style>/*! elementor - v3.21.0 - 15-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/small_c_popup.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n		<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:14:00","2024-04-16 15:14:00","","18","https://latitude39creative.com/?p=985","0","revision","","0");
INSERT INTO 7ja_posts VALUES("986","1","2024-04-16 15:14:45","2024-04-16 15:14:45","<style>/*! elementor - v3.21.0 - 15-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/small_c_popup.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n		<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:14:45","2024-04-16 15:14:45","","18","https://latitude39creative.com/?p=986","0","revision","","0");
INSERT INTO 7ja_posts VALUES("987","1","2024-04-16 15:16:58","2024-04-16 15:16:58","<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:16:58","2024-04-16 15:16:58","","18","https://latitude39creative.com/?p=987","0","revision","","0");
INSERT INTO 7ja_posts VALUES("988","1","2024-04-16 15:17:32","2024-04-16 15:17:32","<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:17:32","2024-04-16 15:17:32","","18","https://latitude39creative.com/?p=988","0","revision","","0");
INSERT INTO 7ja_posts VALUES("989","1","2024-04-16 15:19:45","2024-04-16 15:19:45","<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:19:45","2024-04-16 15:19:45","","18","https://latitude39creative.com/?p=989","0","revision","","0");
INSERT INTO 7ja_posts VALUES("991","1","2024-04-16 15:30:04","2024-04-16 15:30:04","<h5>\n						CREATIVE AGENCY</h5>\n<h1>YOUR CREATIVE DESIGN AGENCY</h1>\n<h5>ABOUT OUR</h5>\n<h6><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/about/\">Creative Studio</a></h6>\n<h5>\n						OUR SERVICES</h5>\n<h3>What  We Do.</h3>\n<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1>\nWe work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong>\n\nOur work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.\n\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\">\nLearn More\n</a>\n<!-- link opening -->\n<a href=\"#\" target=\"_self\" rel=\"noopener\">\n<!-- end link opening -->\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n<h4>\n                    Brand Identity</h4>\nWe\'ll help you create a strong, positive story for your company.\n\n</a>\n<!-- link opening -->\n<a href=\"#\" target=\"_self\" rel=\"noopener\">\n<!-- end link opening -->\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n<h4>\n                    Web Design &amp; Development</h4>\nWe\'ll work with your vision and ideas to create a responsive fun flowing website.\n\n</a>\n<!-- link opening -->\n<a href=\"#\" target=\"_self\" rel=\"noopener\">\n<!-- end link opening -->\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n<h4>\n                    Ecommerce</h4>\nWe\'ll create a robust foundation so your online store provides a great experience.\n\n</a>\n<!-- link opening -->\n<a href=\"#\" target=\"_self\" rel=\"noopener\">\n<!-- end link opening -->\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n<h4>\n                    Digital &amp; Video Marketing</h4>\nWe rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\n\n</a>\n<h3>Who We Are.</h3>\n<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\n<h4>Ben</h4>\n<h6>Owner/Website Stuff</h6>\n<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />\n<h4>Nicole</h4>\n<h6>Owner/Brand and Everything Design</h6>\n<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />\n<h5>\n						WHY CHOOSE US?</h5>\n<h3>We Use Creativity To Be Successful</h3>\n<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n0\n<h3>\n						Projects</h3>\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n0\n<h3>\n						Happy Customers</h3>\n<h3>Our Latest Projects.</h3>\n<h2>Video Marketing</h2>\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n</a>\n<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" ><source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" /></video>\n<h2>\n										BFD Advisors</h2>\n<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\nCheck Us Out\n</a>\n<h2>\n										Pints and Peaks</h2>\nComing Soon!\n<h2>\n										The Unlimited Outdoors</h2>\nComing Soon!\n<h2>\n										BluePrint Financial</h2>\n<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\nCheck Us Out\n</a>\n<h2>\n										Glass Wallet Ventures</h2>\n<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\nCheck Us Out\n</a>\n<h3>Our Partners.</h3>\n<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n</a>\n<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n</a>\n<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n</a>\n<h3>What Our Clients Say.</h3>\nWe were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.\n\n<strong>April Sinclair</strong>\n<h3>Our Latest Blog.</h3>\n<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/kristian-egelund-wwqRpSNBPq4-unsplash.jpg\" alt=\"\" loading=\"lazy\" />\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/whats-in-a-brand/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What&#8217;s in a Brand?</a>\n<h2>\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/whats-in-a-brand/\" target=\"_blank\" rel=\"noopener\">\nWhat&#8217;s in a Brand?			</a></h2>\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>\n•\nAugust 1, 2023\n•\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/category/branding/\" rel=\"category tag\">Branding</a>\n•\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/whats-in-a-brand/#respond\">No Comments</a>\n\nIn today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever.\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n<label> Your name\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n\n<label> Your email\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n\n<label> Subject\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n\n<label> Your message (optional)\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n\n<input type=\"submit\" value=\"Submit\" />\n\n</form>\n<h3>Get In Touch.</h3>\n<h4>\n						Office Address</h4>\nDenver, Colorado\n<h4>\n						Call Us</h4>\n303.472.5618\n\n<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n</a>\n<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\nEmail					</a></h4>\nben@latitude39creative.com","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:30:04","2024-04-16 15:30:04","","169","https://latitude39creative.com/?p=991","0","revision","","0");
INSERT INTO 7ja_posts VALUES("992","1","2024-04-16 15:30:05","2024-04-16 15:30:05","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:30:05","2024-04-16 15:30:05","","169","https://latitude39creative.com/?p=992","0","revision","","0");
INSERT INTO 7ja_posts VALUES("997","1","2024-04-16 15:35:46","2024-04-16 15:35:46","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding 								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Consultation Meetings								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:35:46","2024-04-16 15:35:46","","131","https://latitude39creative.com/?p=997","0","revision","","0");
INSERT INTO 7ja_posts VALUES("998","1","2024-04-16 15:35:47","2024-04-16 15:35:47","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding 								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Consultation Meetings								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:35:47","2024-04-16 15:35:47","","131","https://latitude39creative.com/?p=998","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1000","1","2024-04-16 15:37:02","2024-04-16 15:37:02","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding 								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Consultation Meetings								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:37:02","2024-04-16 15:37:02","","131","https://latitude39creative.com/?p=1000","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1001","1","2024-04-16 15:37:03","2024-04-16 15:37:03","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding 								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Consultation Meetings								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:37:03","2024-04-16 15:37:03","","131","https://latitude39creative.com/?p=1001","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1002","1","2024-04-16 15:37:04","2024-04-16 15:37:04","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding/Consultation Meetings								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:37:04","2024-04-16 15:37:04","","131","https://latitude39creative.com/?p=1002","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1003","1","2024-04-16 15:37:48","2024-04-16 15:37:48","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:37:48","2024-04-16 15:37:48","","169","https://latitude39creative.com/?p=1003","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1004","1","2024-04-16 15:37:50","2024-04-16 15:37:50","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:37:50","2024-04-16 15:37:50","","169","https://latitude39creative.com/?p=1004","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1005","1","2024-04-16 15:37:51","2024-04-16 15:37:51","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://wpmet.com/plugin/elementskit/wp-content/uploads/2022/11/selfhosted_video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:37:51","2024-04-16 15:37:51","","169","https://latitude39creative.com/?p=1005","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1013","1","2024-04-16 15:44:46","2024-04-16 15:44:46","","Core Financial","","inherit","open","closed","","core-financial","","","2024-04-16 15:44:46","2024-04-16 15:44:46","","103","https://latitude39creative.com/wp-content/uploads/2024/04/Core-Financial.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("1015","1","2024-04-16 15:52:05","2024-04-16 15:52:05","","Designated Motivator","","inherit","open","closed","","designated-motivator","","","2024-04-16 15:52:05","2024-04-16 15:52:05","","103","https://latitude39creative.com/wp-content/uploads/2024/04/Designated-Motivator.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts VALUES("1017","1","2024-04-16 15:54:50","2024-04-16 15:54:50","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:54:50","2024-04-16 15:54:50","","103","https://latitude39creative.com/?p=1017","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1018","1","2024-04-16 15:54:50","2024-04-16 15:54:50","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:54:50","2024-04-16 15:54:50","","103","https://latitude39creative.com/?p=1018","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1019","1","2024-04-16 15:56:28","2024-04-16 15:56:28","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:56:28","2024-04-16 15:56:28","","103","https://latitude39creative.com/?p=1019","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1020","1","2024-04-16 15:56:30","2024-04-16 15:56:30","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:56:30","2024-04-16 15:56:30","","103","https://latitude39creative.com/?p=1020","0","revision","","0");
INSERT INTO 7ja_posts VALUES("1021","1","2024-04-16 15:56:30","2024-04-16 15:56:30","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:helloben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:helloben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						helloben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:56:30","2024-04-16 15:56:30","","103","https://latitude39creative.com/?p=1021","0","revision","","0");



DROP TABLE IF EXISTS 7ja_posts_backup;

CREATE TABLE `7ja_posts_backup` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=1022 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_posts_backup VALUES("3","1","2022-11-11 00:17:24","2022-11-11 00:17:24","<!-- wp:heading -->\n<h2>Who we are</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: Latitude39creative.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Comments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Embedded content from other websites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Who we share your data with</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>How long we retain your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>What rights you have over your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Where your data is sent</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->","Privacy Policy","","publish","closed","open","","privacy-policy","","","2022-12-08 22:27:22","2022-12-08 22:27:22","","0","http://box2000/cgi/addon_GT.cgi?s=GT::WP::Install::EIG+%28kaktuscr%29+-+10.0.87.66+%5BWordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+589%3b+Hosting::gap_call%5D/?page_id=3","0","page","","0");
INSERT INTO 7ja_posts_backup VALUES("4","1","2022-11-11 15:22:45","2022-11-11 15:22:45","{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }","Custom Styles","","publish","closed","closed","","wp-global-styles-twentytwentythree","","","2022-11-11 15:22:45","2022-11-11 15:22:45","","0","https://latitude39creative.com/wp-global-styles-twentytwentythree/","0","wp_global_styles","","0");
INSERT INTO 7ja_posts_backup VALUES("6","1","2022-11-11 15:23:55","2022-11-11 15:23:55","","Default Kit","","publish","closed","closed","","default-kit","","","2022-11-11 15:23:55","2022-11-11 15:23:55","","0","https://latitude39creative.com/?p=6","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("9","1","2022-11-12 00:24:22","2022-11-12 00:24:22","","Digital Marketing Agency","","publish","closed","closed","","digital-marketing-agency","","","2023-01-27 15:37:12","2023-01-27 15:37:12","","0","https://latitude39creative.com/?elementor_library=digital-marketing-agency","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("10","1","2022-11-12 00:24:23","2022-11-12 00:24:23","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-12 00:24:23","2022-11-12 00:24:23","","9","https://latitude39creative.com/?p=10","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("11","1","2022-11-12 00:24:23","2022-11-12 00:24:23","<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ooops.</h2>		\n			<h2> I Think You Got Lost.</h2>		\n			<h2>The Page You Were Looking For Couldn\'t Be Found.</h2>		\n			<a role=\"button\">\n						back to home page\n					</a>","404 Page","","publish","closed","closed","","404-page","","","2023-01-27 15:08:17","2023-01-27 15:08:17","","0","https://latitude39creative.com/?elementor_library=404-page","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("16","1","2022-11-12 00:24:28","2022-11-12 00:24:28","","404.png","","inherit","open","closed","","404-png","","","2022-11-12 00:24:28","2022-11-12 00:24:28","","0","https://latitude39creative.com/wp-content/uploads/2022/11/404.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("17","1","2022-11-12 00:24:29","2022-11-12 00:24:29","","404 Page","","inherit","closed","closed","","11-revision-v1","","","2022-11-12 00:24:29","2022-11-12 00:24:29","","11","https://latitude39creative.com/?p=17","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("18","1","2022-11-12 00:24:29","2022-11-12 00:24:29","<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","publish","closed","closed","","contact-popup","","","2024-04-16 15:19:45","2024-04-16 15:19:45","","0","https://latitude39creative.com/?elementor_library=contact-popup","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("20","1","2022-11-12 00:24:31","2022-11-12 00:24:31","","bubble_bg_popup.png","","inherit","open","closed","","bubble_bg_popup-png","","","2022-11-12 00:24:31","2022-11-12 00:24:31","","0","https://latitude39creative.com/wp-content/uploads/2022/11/bubble_bg_popup.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("24","1","2022-11-12 00:24:36","2022-11-12 00:24:36","<h1> Blog</h1>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h1> Share This Post</h1>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>More To Explore</h2>","Single Post","","publish","closed","closed","","single-post","","","2023-02-15 04:12:18","2023-02-15 04:12:18","","0","https://latitude39creative.com/?elementor_library=single-post","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("25","1","2022-11-12 00:24:37","2022-11-12 00:24:37","","Post-BG.png","","inherit","open","closed","","post-bg-png","","","2022-11-12 00:24:37","2022-11-12 00:24:37","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Post-BG.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("27","1","2022-11-12 00:24:39","2022-11-12 00:24:39","","BG-Post-Sub.png","","inherit","open","closed","","bg-post-sub-png","","","2022-11-12 00:24:39","2022-11-12 00:24:39","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Post-Sub.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("29","1","2022-11-12 00:24:41","2022-11-12 00:24:41","","CTA-Shapes.png","","inherit","open","closed","","cta-shapes-png","","","2022-11-12 00:24:41","2022-11-12 00:24:41","","0","https://latitude39creative.com/wp-content/uploads/2022/11/CTA-Shapes.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("30","1","2022-11-12 00:24:41","2022-11-12 00:24:41","","Single Post","","inherit","closed","closed","","24-revision-v1","","","2022-11-12 00:24:41","2022-11-12 00:24:41","","24","https://latitude39creative.com/?p=30","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("31","1","2022-11-12 00:24:41","2022-11-12 00:24:41","<h2>Blog</h2>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","publish","closed","closed","","posts-archive","","","2023-02-15 18:55:34","2023-02-15 18:55:34","","0","https://latitude39creative.com/?elementor_library=posts-archive","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("32","1","2022-11-12 00:24:42","2022-11-12 00:24:42","","News-Hero-Bg.png","","inherit","open","closed","","news-hero-bg-png","","","2022-11-12 00:24:42","2022-11-12 00:24:42","","0","https://latitude39creative.com/wp-content/uploads/2022/11/News-Hero-Bg.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("34","1","2022-11-12 00:24:44","2022-11-12 00:24:44","","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2022-11-12 00:24:44","2022-11-12 00:24:44","","31","https://latitude39creative.com/?p=34","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("63","2","2023-11-14 01:18:47","2023-11-14 01:18:47","\n\n\n\n\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is SEO?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO, or Search Engine Optimization, is a set of practices aimed at improving a website\'s visibility and ranking in search engine results pages (SERPs). The primary goal of SEO is to increase organic (non-paid) traffic to a website by optimizing various elements, both on the website itself (on-page SEO) and outside the website (off-page SEO).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">Here are some key aspects of SEO:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Keyword Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Identifying and using relevant keywords in the content, meta tags, and other elements to match user search queries.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Content Quality:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating high-quality, valuable, and relevant content that satisfies user intent and provides useful information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>On-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing elements on the website, including title tags, meta descriptions, header tags, URL structure, and internal linking.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Off-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Building a reputable online presence through activities such as link building, social media engagement, and influencer outreach.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Technical SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensuring the website is technically sound and accessible to search engines. This includes optimizing page speed, implementing schema markup, and having a mobile-friendly design.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>User Experience (UX):</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating a positive user experience to encourage visitors to stay on the site, engage with content, and reduce bounce rates.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Local SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing a website to appear in local search results, is particularly important for businesses serving a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Analytics and Monitoring:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Using tools like Google Analytics and Google Search Console to track website performance, monitor traffic, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is dynamic and evolves as search engine algorithms change. It requires ongoing efforts to adapt to these changes, stay updated with best practices, and maintain or improve search rankings. While paid advertising can generate quick results, SEO focuses on long-term, sustainable strategies to increase a website\'s visibility and attract organic traffic. That\'s where <a href=\"http://Latitude39creative.com\">Latitude39creative</a> comes in.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>How Does SEO Work?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO works through a combination of on-page, off-page, and technical strategies aimed at optimizing a website to improve its visibility and ranking on search engine results pages (SERPs). Here\'s a breakdown of how SEO works:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">1. <strong>Keyword Research:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO starts with identifying relevant keywords related to your content, products, or services. This involves understanding what terms your target audience is likely to use when searching for information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">2. <strong>On-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Content Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create high-quality, relevant, and engaging content that incorporates the identified keywords naturally.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\">Use header tags, meta titles, and meta descriptions to provide structure and information to search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>URL Structure:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Develop SEO-friendly URLs that include keywords and provide a clear structure for both users and search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Internal Linking:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Link relevant pages within your website to improve navigation and distribute link equity.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Mobile Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website is responsive and provides a good user experience on mobile devices.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">3. <strong>Off-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Link Building:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Acquire high-quality backlinks from reputable websites. Quality and relevance are crucial in link building.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Social Signals:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Maintain an active presence on social media platforms, as social signals can indirectly impact search rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Online Reputation Management:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Encourage positive online reviews and manage your online reputation.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">4. <strong>Technical SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Page Speed Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website\'s loading speed to improve user experience and meet search engine standards.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>XML Sitemaps:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create and submit XML sitemaps to help search engines understand the structure of your website.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>SSL Certificates:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website has an SSL certificate for a secure connection.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Schema Markup:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Implement schema markup to provide search engines with more information about your content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">5. <strong>User Experience (UX):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create a positive user experience by making your website easy to navigate, ensuring fast load times, and delivering valuable content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">6. <strong>Analytics and Monitoring:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Use tools like Google Analytics and Google Search Console to monitor website performance, track user behavior, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">7. <strong>Content Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Regularly update and add new content to keep your website fresh and relevant.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">8. <strong>Algorithm Changes and Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Stay informed about changes in search engine algorithms and adjust your strategy accordingly.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">9. <strong>Local SEO (if applicable):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website for local search if you have a physical presence or serve a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">10. <strong>Continuous Optimization:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO is an ongoing process. Regularly audit your website, analyze performance data, and adapt your strategy based on results and industry trends.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">By implementing these strategies, SEO aims to provide the best possible answer to a user\'s search, making your website more visible and relevant in search engine results. Keep in mind that SEO is a long-term strategy, and results may take time to become evident.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Does SEO REALLY matter?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is crucial for several reasons, and its importance has grown significantly as the internet has become an integral part of people\'s lives. Here are key reasons why SEO is important:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Increased Visibility and Traffic:</strong></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO helps improve a website\'s visibility in search engine results. When your site ranks higher, it\'s more likely to be seen by users, resulting in increased organic traffic.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     2. <strong>Credibility and Trust:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Websites that appear at the top of search results are often perceived as more credible and trustworthy by users. Establishing a strong online presence through SEO contributes to building trust with your audience.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     3. <strong>Better User Experience:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO isn\'t just about search engines; it\'s also about enhancing the user experience. By optimizing for both search engines and users, you create a more seamless, intuitive, and enjoyable experience for visitors.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     4. <strong>Cost-Effective Marketing:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Compared to paid advertising, SEO is a cost-effective way to attract organic traffic. While it requires time and effort, the long-term benefits often outweigh the costs associated with other marketing channels.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     5. <strong>Higher Conversion Rates:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Users who find your website through organic search are often actively looking for information, products, or services. This targeted traffic is more likely to convert into leads or customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     6. <strong>Adaptation to Changing Trends:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO encourages staying updated with industry trends and changes in search engine algorithms. This adaptability is crucial for maintaining and improving search rankings over time.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     7. <strong>Local Business Visibility:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">For local businesses, local SEO is essential for appearing in local search results. This is particularly important for attracting nearby customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     8. <strong>Insights into Customer Behavior:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO tools and analytics provide valuable data about user behavior, preferences, and the effectiveness of your strategies. This information can inform decision-making and future optimization efforts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     9. <strong>Competitive Advantage:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">If your competitors are investing in SEO and you\'re not, you risk losing potential customers to them. Conversely, effective SEO can help you outperform competitors in search engine rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     10. <strong>Global Reach:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO enables businesses to reach a global audience. Even small businesses can compete on a larger scale by optimizing their online presence for international search.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">In summary, SEO is not just about improving search rankings; it\'s a holistic approach to creating a user-friendly, credible, and visible online presence. By investing in SEO, businesses can strengthen their digital footprint and connect with their target audience in a more meaningful way. <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Contact Us</a> to see how we can help you with your SEO.</p>\n<!-- /wp:paragraph -->","What is SEO, how does it work, and does it really matter?","What is SEO? Does it work... Do I really need it?","publish","open","open","","case-study-how-to-improve-seo-scores","","","2023-11-14 01:18:52","2023-11-14 01:18:52","","0","https://latitude39creative.com/case-study-how-to-improve-seo-scores/","0","post","","0");
INSERT INTO 7ja_posts_backup VALUES("64","1","2022-11-12 00:24:59","2022-11-12 00:24:59","","Case Study: How to improve SEO scores","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","63-revision-v1","","","2022-11-12 00:24:59","2022-11-12 00:24:59","","63","https://latitude39creative.com/?p=64","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("65","1","2022-11-12 00:24:59","2022-11-12 00:24:59","","Case Study: How to improve SEO scores","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","63-revision-v1","","","2022-11-12 00:24:59","2022-11-12 00:24:59","","63","https://latitude39creative.com/?p=65","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("75","2","2023-08-01 21:38:05","2023-08-01 21:38:05","<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.</p>\n<p>1.  Recognition and Recall:</p>\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.</p>\n<p>2. Building Trust and Credibility:</p>\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.</p>\n<p>3.  Customer Loyalty:</p>\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.</p>\n<p>4. <strong>Competitive Advantage:</strong></p>\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.</p>\n<p>5.  <strong>Employee Morale and Pride:</strong></p>\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.</p>\n<p>6. <strong>Brand Extension and Diversification:</strong></p>\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.</p>\n<p>7. <strong>Price Premium:</strong></p>\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.</p>\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>","What\'s in a Brand?","In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever.","publish","open","open","","whats-in-a-brand","","","2023-08-01 21:44:20","2023-08-01 21:44:20","","0","https://latitude39creative.com/what-will-be-the-future-post-facebook/","0","post","","0");
INSERT INTO 7ja_posts_backup VALUES("80","1","2022-11-12 00:25:06","2022-11-12 00:25:06","","BG-Social-Media.png","","inherit","open","closed","","bg-social-media-png","","","2022-11-12 00:25:06","2022-11-12 00:25:06","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Social-Media.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("82","1","2022-11-12 00:25:09","2022-11-12 00:25:09","","BG-Service-one.png","","inherit","open","closed","","bg-service-one-png","","","2022-11-12 00:25:09","2022-11-12 00:25:09","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Service-one.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("85","1","2022-11-12 00:25:12","2022-11-12 00:25:12","","BG-Join-Clients.png","","inherit","open","closed","","bg-join-clients-png","","","2022-11-12 00:25:12","2022-11-12 00:25:12","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Join-Clients.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("86","1","2022-11-12 00:25:14","2022-11-12 00:25:14","","Social-media.svg","","inherit","open","closed","","social-media-svg","","","2022-11-12 00:25:14","2022-11-12 00:25:14","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Social-media.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("87","1","2022-11-12 00:25:20","2022-11-12 00:25:20","","SEO.svg","","inherit","open","closed","","seo-svg","","","2022-11-12 00:25:20","2022-11-12 00:25:20","","0","https://latitude39creative.com/wp-content/uploads/2022/11/SEO.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("88","1","2022-11-12 00:25:25","2022-11-12 00:25:25","","PPC.svg","","inherit","open","closed","","ppc-svg","","","2022-11-12 00:25:25","2022-11-12 00:25:25","","0","https://latitude39creative.com/wp-content/uploads/2022/11/PPC.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("89","1","2022-11-12 00:25:31","2022-11-12 00:25:31","","BG-more-Services.png","","inherit","open","closed","","bg-more-services-png","","","2022-11-12 00:25:31","2022-11-12 00:25:31","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-more-Services.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("94","1","2022-11-12 00:25:35","2022-11-12 00:25:35","","BG-contact-hero-New.png","","inherit","open","closed","","bg-contact-hero-new-png","","","2022-11-12 00:25:35","2022-11-12 00:25:35","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-contact-hero-New.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("95","1","2022-11-12 00:25:36","2022-11-12 00:25:36","","BG-Form-Contact-Us.png","","inherit","open","closed","","bg-form-contact-us-png","","","2022-11-12 00:25:36","2022-11-12 00:25:36","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Form-Contact-Us.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("96","1","2022-11-12 00:25:37","2022-11-12 00:25:37","","iphone.svg","","inherit","open","closed","","iphone-svg","","","2022-11-12 00:25:37","2022-11-12 00:25:37","","0","https://latitude39creative.com/wp-content/uploads/2022/11/iphone.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("97","1","2022-11-12 00:25:42","2022-11-12 00:25:42","","Location.svg","","inherit","open","closed","","location-svg","","","2022-11-12 00:25:42","2022-11-12 00:25:42","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Location.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("98","1","2022-11-12 00:25:48","2022-11-12 00:25:48","","Mail.svg","","inherit","open","closed","","mail-svg","","","2022-11-12 00:25:48","2022-11-12 00:25:48","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Mail.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("99","1","2022-11-12 00:25:54","2022-11-12 00:25:54","","BG-contact-info.png","","inherit","open","closed","","bg-contact-info-png","","","2022-11-12 00:25:54","2022-11-12 00:25:54","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-contact-info.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("103","1","2022-11-12 00:25:55","2022-11-12 00:25:55","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:helloben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:helloben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						helloben@latitude39creative.com					</p>","Current Projects","","publish","closed","closed","","clients","","","2024-04-16 15:56:30","2024-04-16 15:56:30","","0","https://latitude39creative.com/clients/","0","page","","0");
INSERT INTO 7ja_posts_backup VALUES("104","1","2022-11-12 00:25:57","2022-11-12 00:25:57","","Clients-BG-hero-new.png","","inherit","open","closed","","clients-bg-hero-new-png","","","2022-11-12 00:25:57","2022-11-12 00:25:57","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Clients-BG-hero-new.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("121","1","2022-11-12 00:26:06","2022-11-12 00:26:06","","BG-Clients-new.png","","inherit","open","closed","","bg-clients-new-png","","","2022-11-12 00:26:06","2022-11-12 00:26:06","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Clients-new.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("127","1","2022-11-12 00:26:12","2022-11-12 00:26:12","","Bg-Testimonials-2.png","","inherit","open","closed","","bg-testimonials-2-png","","","2022-11-12 00:26:12","2022-11-12 00:26:12","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-Testimonials-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("131","1","2022-11-12 00:26:12","2022-11-12 00:26:12","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding/Consultation Meetings								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","publish","closed","closed","","services","","","2024-04-16 15:37:04","2024-04-16 15:37:04","","0","https://latitude39creative.com/services/","0","page","","0");
INSERT INTO 7ja_posts_backup VALUES("132","1","2022-11-12 00:26:13","2022-11-12 00:26:13","","Bg-Services-Hero-New.png","","inherit","open","closed","","bg-services-hero-new-png","","","2022-11-12 00:26:13","2022-11-12 00:26:13","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-Services-Hero-New.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("133","1","2022-11-12 00:26:14","2022-11-12 00:26:14","","Digital-Consulting.svg","","inherit","open","closed","","digital-consulting-svg","","","2022-11-12 00:26:14","2022-11-12 00:26:14","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Digital-Consulting.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("134","1","2022-11-12 00:26:20","2022-11-12 00:26:20","","Web-Design.svg","","inherit","open","closed","","web-design-svg","","","2022-11-12 00:26:20","2022-11-12 00:26:20","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Web-Design.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("135","1","2022-11-12 00:26:26","2022-11-12 00:26:26","","content-marketing.svg","","inherit","open","closed","","content-marketing-svg","","","2022-11-12 00:26:26","2022-11-12 00:26:26","","0","https://latitude39creative.com/wp-content/uploads/2022/11/content-marketing.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("136","1","2022-11-12 00:26:31","2022-11-12 00:26:31","","Branding.svg","","inherit","open","closed","","branding-svg","","","2022-11-12 00:26:31","2022-11-12 00:26:31","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Branding.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("137","1","2022-11-12 00:26:37","2022-11-12 00:26:37","","Research.svg","","inherit","open","closed","","research-svg","","","2022-11-12 00:26:37","2022-11-12 00:26:37","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Research.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("138","1","2022-11-12 00:26:42","2022-11-12 00:26:42","","Strategy.svg","","inherit","open","closed","","strategy-svg","","","2022-11-12 00:26:42","2022-11-12 00:26:42","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Strategy.svg","0","attachment","image/svg+xml","0");
INSERT INTO 7ja_posts_backup VALUES("139","1","2022-11-12 00:26:48","2022-11-12 00:26:48","","Bg-Services.png","","inherit","open","closed","","bg-services-png","","","2022-11-12 00:26:48","2022-11-12 00:26:48","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-Services.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("142","1","2022-11-12 00:26:59","2022-11-12 00:26:59","","Bg-more-about-the-services.png","","inherit","open","closed","","bg-more-about-the-services-png","","","2022-11-12 00:26:59","2022-11-12 00:26:59","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-more-about-the-services.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("143","1","2022-11-12 00:27:01","2022-11-12 00:27:01","","BG-FAQ-Services.png","","inherit","open","closed","","bg-faq-services-png","","","2022-11-12 00:27:01","2022-11-12 00:27:01","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-FAQ-Services.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("147","1","2022-11-12 00:27:02","2022-11-12 00:27:02","<h2>About</h2>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get, the more real your business will become.</h5><h5>This will help us create a step-by-step plan that will make that future an actual reality.</h5>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","publish","closed","closed","","about","","","2023-11-14 00:17:09","2023-11-14 00:17:09","","0","https://latitude39creative.com/about/","0","page","","0");
INSERT INTO 7ja_posts_backup VALUES("148","1","2022-11-12 00:27:04","2022-11-12 00:27:04","","Bg-About-New.png","","inherit","open","closed","","bg-about-new-png","","","2022-11-12 00:27:04","2022-11-12 00:27:04","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Bg-About-New.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("150","1","2022-11-12 00:27:06","2022-11-12 00:27:06","","BG-intro-About.png","","inherit","open","closed","","bg-intro-about-png","","","2022-11-12 00:27:06","2022-11-12 00:27:06","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-intro-About.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("151","1","2022-11-12 00:27:08","2022-11-12 00:27:08","","We-believe-BG.png","","inherit","open","closed","","we-believe-bg-png","","","2022-11-12 00:27:08","2022-11-12 00:27:08","","0","https://latitude39creative.com/wp-content/uploads/2022/11/We-believe-BG.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("161","1","2022-11-12 00:27:18","2022-11-12 00:27:18","","BG-About-Team-section.png","","inherit","open","closed","","bg-about-team-section-png","","","2022-11-12 00:27:18","2022-11-12 00:27:18","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-About-Team-section.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("169","1","2022-11-12 00:27:28","2022-11-12 00:27:28","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://wpmet.com/plugin/elementskit/wp-content/uploads/2022/11/selfhosted_video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","publish","closed","closed","","home","","","2024-04-16 15:37:51","2024-04-16 15:37:51","","0","https://latitude39creative.com/home/","0","page","","0");
INSERT INTO 7ja_posts_backup VALUES("171","1","2022-11-12 00:27:30","2022-11-12 00:27:30","","BG-HomePage-High.png","","inherit","open","closed","","bg-homepage-high-png","","","2022-11-12 00:27:30","2022-11-12 00:27:30","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-HomePage-High.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("173","1","2022-11-12 00:27:33","2022-11-12 00:27:33","","BG-home-new4.png","","inherit","open","closed","","bg-home-new4-png","","","2022-11-12 00:27:33","2022-11-12 00:27:33","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-home-new4.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("174","1","2022-11-12 00:27:34","2022-11-12 00:27:34","","Shapes-icons.png","","inherit","open","closed","","shapes-icons-png","","","2022-11-12 00:27:34","2022-11-12 00:27:34","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Shapes-icons.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("175","1","2022-11-12 00:27:36","2022-11-12 00:27:36","","BG-TEAN-Home.png","","inherit","open","closed","","bg-tean-home-png","","","2022-11-12 00:27:36","2022-11-12 00:27:36","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-TEAN-Home.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("176","1","2022-11-12 00:27:37","2022-11-12 00:27:37","","BG-Testemonials-home-page.png","","inherit","open","closed","","bg-testemonials-home-page-png","","","2022-11-12 00:27:37","2022-11-12 00:27:37","","0","https://latitude39creative.com/wp-content/uploads/2022/11/BG-Testemonials-home-page.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("189","1","2022-12-08 22:33:34","2022-11-12 00:27:51"," ","","","publish","closed","closed","","189","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/","2","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("190","1","2022-12-08 22:33:34","2022-11-12 00:27:51"," ","","","publish","closed","closed","","190","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/","4","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("192","1","2022-12-08 22:33:34","2022-11-12 00:27:51"," ","","","publish","closed","closed","","192","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/","1","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("193","1","2022-12-08 22:33:34","2022-11-12 00:27:51"," ","","","publish","closed","closed","","193","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/","3","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("195","1","2022-11-12 00:27:51","2022-11-12 00:27:51","<style>/*! elementor - v3.8.0 - 30-10-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"155\" height=\"140\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Oval.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"198\" height=\"190\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Fill-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"99\" height=\"99\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Oval-Copy.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.8.0 - 30-10-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ooops.</h2>		\n			<h2> I Think You Got Lost Between The Shapes.</h2>		\n			<h2>The Page You Were Looking For Couldn\'t Be Found.</h2>		\n			<a role=\"button\">\n						back to home page\n					</a>","404 Page","","inherit","closed","closed","","11-revision-v1","","","2022-11-12 00:27:51","2022-11-12 00:27:51","","11","https://latitude39creative.com/?p=195","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("197","1","2022-11-12 00:27:52","2022-11-12 00:27:52","<style>/*! elementor - v3.8.0 - 30-10-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-negative:0;flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>Share This Post</h2>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<h2>Subscribe To Our Newsletter</h2>		\n			<h3>Get updates and learn from the best</h3>		\n			<h2>More To Explore</h2>		\n			<h4>Do You Want To Boost Your Business?</h4>		\n			<h2>drop us a line and keep in touch</h2>		\n			<a href=\"https://library.elementor.com/marketing-digital-agency/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"539\" height=\"539\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/CTA-post.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?w=539&amp;ssl=1 539w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 539px) 100vw, 539px\" />","Single Post","","inherit","closed","closed","","24-revision-v1","","","2022-11-12 00:27:52","2022-11-12 00:27:52","","24","https://latitude39creative.com/?p=197","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("198","1","2022-11-12 00:27:52","2022-11-12 00:27:52","<h3>Take a break and read all about it</h3>		\n			<h4>Do You Want To Boost Your Business?</h4>		\n			<h2>drop us a line and keep in touch</h2>		\n			<a href=\"https://library.elementor.com/marketing-digital-agency/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"539\" height=\"539\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/CTA-News.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-News.png?w=539&amp;ssl=1 539w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-News.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-News.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 539px) 100vw, 539px\" />","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2022-11-12 00:27:52","2022-11-12 00:27:52","","31","https://latitude39creative.com/?p=198","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("206","1","2022-11-12 00:27:58","2022-11-12 00:27:58","<p><!-- wp:paragraph --></p>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl. Mauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Nulla euismod a mi eu elementum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet velit gravida tempor et quis mauris. Vestibulum fermentum est nulla, a accumsan libero ultrices nec.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Etiam erat quam, pellentesque in maximus vitae, sollicitudin sed dui. Fusce blandit turpis nec aliquam pharetra. Suspendisse imperdiet molestie imperdiet. Pellentesque imperdiet magna tincidunt, ultricies tellus at, aliquet sapien.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p><strong>Class aptent taciti socios<br></strong>Lkad litora torquent per conubia nostra, per inceptos himenaeos. Praesent ut libero a ipsum aliquam accumsan. Maecenas ut arcu in justo euismod auctor. Donec facilisis efficitur ante a suscipit. Mauris maximus eu odio ac euismod. Maecenas faucibus turpis sed posuere volutpat. Sed tincidunt luctus massa ac aliquam. Integer tincidunt purus et diam dapibus, a rhoncus magna congue. Ut ut turpis suscipit massa mollis gravida. Proin ut dui in libero aliquet semper.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p><strong>Morbi a felis sapien</strong><br>bibendum hendrerit elit, vitae posuere sem pharetra nec. Morbi suscipit suscipit luctus. Morbi posuere augue eu tristique mollis. Suspendisse fringilla venenatis placerat. Nunc id sapien pretium urna bibendum consectetur. Quisque blandit metus arcu, id ornare magna molestie nec. Proin malesuada a lacus nec mollis. Aliquam pellentesque purus ac nibh pharetra gravida.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Vestibulum quis elit rhoncus, ultricies dolor at, gravida orci. Curabitur ut luctus felis. Sed suscipit ut velit sit amet semper. Donec lorem sem, feugiat eget laoreet in, semper non elit. Ut accumsan lacus eu tellus venenatis tincidunt. Suspendisse at mauris.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Nulla vel ante eu leo rhoncus condimentum vitae et elit. Etiam vitae elementum orci. Aliquam quam turpis, malesuada non ultrices ac, mollis ut dui. Donec eu nisl ut sapien feugiat accumsan ut eget ligula. Phasellus pharetra gravida est id pellentesque. Aliquam erat volutpat. Phasellus venenatis ipsum ac metus sagittis bibendum.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>In sed rutrum magna. Nullam euismod metus ac sagittis viverra. Vivamus posuere vehicula risus a eleifend. Sed vel metus lacus. In hac habitasse platea dictumst. Morbi lacinia fermentum mi eget auctor. Aenean vehicula odio justo, ut gravida ex porttitor eu. Fusce sed blandit mauris, in tempus nisl. Sed rutrum elit non ante rhoncus, vel luctus neque pretium.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p><strong>Cras nec magna nec neque pulvinar commodo.</strong><br>Duis libero mauris, elementum et dui vitae, malesuada egestas nisi. Maecenas dignissim consequat tellus quis dignissim. Ut ac convallis tellus, semper sodales erat. Nam ac nunc blandit, volutpat nunc a, accumsan velit. Praesent tincidunt purus iaculis diam posuere, at condimentum urna imperdiet. Nam sit amet pulvinar massa, id hendrerit ante. Vestibulum tellus tellus, eleifend nec placerat tempus, tincidunt at orci. Morbi mollis, justo aliquam venenatis euismod, diam ante sollicitudin lacus, ac fermentum sapien velit quis magna. Integer rutrum lacinia ullamcorper. Vivamus sit amet bibendum augue, non luctus diam. Cras nisi est, ultricies eget ipsum ut, viverra facilisis tortor.</p>\n<p><!-- /wp:paragraph --></p>","Case Study: How to improve SEO scores","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","63-revision-v1","","","2022-11-12 00:27:58","2022-11-12 00:27:58","","63","https://latitude39creative.com/?p=206","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("221","1","2022-11-12 00:45:57","2022-11-12 00:45:57","","Latitude-Logo","","inherit","open","closed","","latitude-logo","","","2022-11-12 00:45:57","2022-11-12 00:45:57","","0","https://latitude39creative.com/wp-content/uploads/2022/11/Latitude-Logo.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts_backup VALUES("223","1","2022-11-12 01:28:39","2022-11-12 01:28:39","","IMG_0885","","inherit","open","closed","","img_0885","","","2022-11-12 01:28:39","2022-11-12 01:28:39","","169","https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("227","1","2022-11-13 00:45:32","2022-11-13 00:45:32","","Nicole","","inherit","open","closed","","nicole","","","2022-11-13 00:45:32","2022-11-13 00:45:32","","169","https://latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("238","1","2022-11-13 00:55:51","2022-11-13 00:55:51","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-13 00:55:51","2022-11-13 00:55:51","","9","https://latitude39creative.com/?p=238","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("239","1","2022-11-13 00:55:52","2022-11-13 00:55:52","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-13 00:55:52","2022-11-13 00:55:52","","9","https://latitude39creative.com/?p=239","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("240","1","2022-11-13 00:55:52","2022-11-13 00:55:52","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-13 00:55:52","2022-11-13 00:55:52","","9","https://latitude39creative.com/?p=240","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("241","1","2022-11-13 00:55:52","2022-11-13 00:55:52","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2022-11-13 00:55:52","2022-11-13 00:55:52","","9","https://latitude39creative.com/?p=241","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("246","1","2022-11-13 01:18:13","2022-11-13 01:18:13","{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }","Custom Styles","","publish","closed","closed","","wp-global-styles-hello-elementor","","","2022-11-13 01:18:13","2022-11-13 01:18:13","","0","https://latitude39creative.com/wp-global-styles-hello-elementor/","0","wp_global_styles","","0");
INSERT INTO 7ja_posts_backup VALUES("287","1","2022-12-08 17:40:07","2022-12-08 17:40:07","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://latitude39creative.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:helloben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:helloben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						helloben@latitude39creative.com					</p>","Contact","","private","closed","closed","","contact","","","2024-04-16 15:10:42","2024-04-16 15:10:42","","0","https://latitude39creative.com/?page_id=287","0","page","","0");
INSERT INTO 7ja_posts_backup VALUES("294","1","2023-01-30 03:46:03","2022-12-08 17:52:52"," ","","","publish","closed","closed","","294","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=294","1","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("297","1","2023-01-30 03:46:03","2022-12-08 17:52:53"," ","","","publish","closed","closed","","297","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=297","4","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("298","1","2023-01-30 03:46:03","2022-12-08 17:52:53"," ","","","publish","closed","closed","","298","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=298","3","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("312","1","2022-12-08 22:27:18","2022-12-08 22:27:18","<!-- wp:heading -->\n<h2>Who we are</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: Latitude39creative.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Comments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Embedded content from other websites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Who we share your data with</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>How long we retain your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>What rights you have over your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Where your data is sent</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->","Privacy Policy","","inherit","closed","closed","","3-revision-v1","","","2022-12-08 22:27:18","2022-12-08 22:27:18","","3","https://latitude39creative.com/?p=312","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("314","1","2023-01-30 03:46:03","2022-12-08 22:28:25"," ","","","publish","closed","closed","","314","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=314","6","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("315","1","2022-12-08 22:32:38","2022-12-08 22:32:38","<h1>Latest Blog</h1>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n\n<label> Your name\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\"> </label>\n\n<label> Your email\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\"> </label>\n\n<label> Subject\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\"> </label>\n\n<label> Your message (optional)\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n\n<input type=\"submit\" value=\"Submit\">\n\n</form>\n<h3>Get In Touch.</h3>\n<h4>\n						Office Address</h4>\nDenver, Colorado\n<h4>\n						Call Us</h4>\n+(827) 123 - 456 - 7891\n<h4>\n						Mail Us</h4>\ninfo@evaniayogastudio.com","Blog","Website ideas and creative inspiration","publish","closed","closed","","blog","","","2023-11-14 00:48:15","2023-11-14 00:48:15","","0","https://latitude39creative.com/?page_id=315","0","page","","0");
INSERT INTO 7ja_posts_backup VALUES("317","1","2022-12-08 22:33:34","2022-12-08 22:33:34"," ","","","publish","closed","closed","","317","","","2022-12-08 22:33:34","2022-12-08 22:33:34","","0","https://latitude39creative.com/?p=317","5","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("318","1","2023-01-30 03:46:03","2022-12-08 22:33:57"," ","","","publish","closed","closed","","318","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=318","5","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("319","2","2022-12-14 00:20:11","2022-12-14 00:20:11","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward.&nbsp;</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals.&nbsp;</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","publish","open","open","","feck-perfuction","","","2023-02-15 04:42:21","2023-02-15 04:42:21","","0","https://latitude39creative.com/?p=319","0","post","","0");
INSERT INTO 7ja_posts_backup VALUES("320","1","2022-12-14 00:20:11","2022-12-14 00:20:11","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 00:20:11","2022-12-14 00:20:11","","319","https://latitude39creative.com/?p=320","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("321","1","2022-12-14 00:21:28","2022-12-14 00:21:28","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 00:21:28","2022-12-14 00:21:28","","319","https://latitude39creative.com/?p=321","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("322","1","2022-12-14 00:21:30","2022-12-14 00:21:30","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 00:21:30","2022-12-14 00:21:30","","319","https://latitude39creative.com/?p=322","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("323","1","2022-12-14 00:21:30","2022-12-14 00:21:30","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing. </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure! </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today. </p>\n<!-- /wp:paragraph -->\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals. </li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 00:21:30","2022-12-14 00:21:30","","319","https://latitude39creative.com/?p=323","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("327","1","2022-12-14 00:30:59","2022-12-14 00:30:59","<style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Share This Post</h2>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<h2>Subscribe To Our Newsletter</h2>		\n			<h3>Get updates and learn from the best</h3>		\n			<h2>More To Explore</h2>		\n			<h4>Do You Want To Boost Your Business?</h4>		\n			<h2>drop us a line and keep in touch</h2>		\n			<a role=\"button\">\n						Contact Us\n					</a>\n			<style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"539\" height=\"539\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/CTA-post.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?w=539&amp;ssl=1 539w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/CTA-post.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 539px) 100vw, 539px\" />","Single Post","","inherit","closed","closed","","24-revision-v1","","","2022-12-14 00:30:59","2022-12-14 00:30:59","","24","https://latitude39creative.com/?p=327","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("330","1","2022-12-14 01:24:41","2022-12-14 01:24:41","","Scribble","","inherit","open","closed","","scribble","","","2022-12-14 01:24:41","2022-12-14 01:24:41","","319","https://latitude39creative.com/wp-content/uploads/2022/12/Scribble.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("331","1","2022-12-14 01:25:42","2022-12-14 01:25:42","<!-- wp:paragraph -->\n<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much pressure. Perfectionism has brought many great qualities into my life. I consider myself a pretty damn good mother to two amazing kids, a pretty decent daughter, an employee who works hard, self-proclaimed health nut, and now a girlfriend to a wonderful man.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Perfectionism has also crippled me. It has delayed big dreams and goals. Carefully calculating every move, habit, decision, and thought until it is perfect is debilitating. My need for perfectionism is strongly tied to fear. I want to be perfect because I have a fear of failing. I wouldn’t start art projects, design projects, or my business, for that matter, because of the fear of failing.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then life happened. I was knocked on my butt by a divorce and a life-long medical diagnosis. Far from the perfect world I had “built”. Both my marriage and health, which I had worked so hard to be perfect, failed. Rebuilding myself on a better foundation was a must and in the end a blessing. I quickly learned perfectionism was not protection from devastating life events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of a need for perfection has released so much unnecessary pressure and fear. <a href=\"https://www.jamesvictore.com/\">James Victore</a> was a huge influence on me when I was rebuilding my relationship with perfection and fear. As James likes to proudly exclaim, <a href=\"https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366\">“FECK PERFUCTION!”</a> This had become my mantra for the rebuild. Letting go of perfection and fear has allowed me to make room for failure and grace. Yes, you heard me correctly, make room for failure!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making room for failure and imperfection has been liberating for me as an artist. It’s like having a hall pass to explore, play, and produce amazing work.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Letting go of perfectionism and fear is not something that obviously happens overnight. For me, letting go of perfectionism was deeply rooted in forming new habits. Below, are some crucial habits that helped me rebuild a better relationship with perfectionism, and be a better business owner, mother, partner, and person today.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Practicing Gratitude</strong>--it sounds insignificant, but practicing gratitude is huge. I make it a habit to physically write them down...daily. I sometimes share them with others, but I make sure I write them down. Some days I have a few, and other days, I have a whole list. DO IT! Writing down gratitude statements is powerful. I like this gratitude journal. <a href=\"https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7\">https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7</a></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":2} -->\n<ol start=\"2\"><!-- wp:list-item -->\n<li><strong>Practice Imperfection</strong>-- sounds obvious, I know. But you really have to practice being imperfect. For me, that meant something as simple as drawing with a pen. It was committing to something I couldn’t erase over and over again. Or leaning into a design project that wasn’t perfect, and reminding myself to keep going. That was huge for me. The idea of, “keep moving forward” no matter if the project, presentation, etc. didn’t feel perfect. To keep at it, keep moving forward. I also posted artwork I wasn’t 100% proud of or finished with. It was a powerful exercise. Just keep moving forward.&nbsp;</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><!-- wp:list-item -->\n<li><strong>Practice kindness</strong>--Listen to the way you talk to yourself. Be incredibly mindful and aware of your internal dialog. If you are anything like me, I am incredibly critical and hard on myself. Stop those thoughts, and degrading self-talk dead in their tracks! If you don’t believe in your work and self, no one else will. You are perfectly imperfect. It is who you are and part of your story. Don’t let imperfection destroy your confidence, vulnerability, and ability to keep moving forward with goals.&nbsp;</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Release all the built-up pressure around perfectionism and fear in areas of your life. You’ll never know what amazing gifts, lessons, projects, moments, or relationships you can build.</p>\n<!-- /wp:paragraph -->","Feck Perfuction!","","inherit","closed","closed","","319-revision-v1","","","2022-12-14 01:25:42","2022-12-14 01:25:42","","319","https://latitude39creative.com/?p=331","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("333","1","2022-12-30 19:35:51","2022-12-30 19:35:51","","BFD-main-logo","","inherit","open","closed","","bfd-main-logo","","","2022-12-30 19:35:51","2022-12-30 19:35:51","","0","https://latitude39creative.com/wp-content/uploads/2022/12/BFD-main-logo.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts_backup VALUES("334","1","2022-12-30 19:36:51","2022-12-30 19:36:51","","GW-logo","","inherit","open","closed","","gw-logo","","","2022-12-30 19:36:51","2022-12-30 19:36:51","","0","https://latitude39creative.com/wp-content/uploads/2022/12/GW-logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("335","1","2022-12-30 19:38:01","2022-12-30 19:38:01","","blueprintfinlogo","","inherit","open","closed","","blueprintfinlogo","","","2022-12-30 19:38:01","2022-12-30 19:38:01","","0","https://latitude39creative.com/wp-content/uploads/2022/12/blueprintfinlogo.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts_backup VALUES("336","1","2022-12-30 19:45:26","2022-12-30 19:45:26","","PivotAll_Web-Logo","","inherit","open","closed","","pivotall_web-logo","","","2022-12-30 19:45:26","2022-12-30 19:45:26","","0","https://latitude39creative.com/wp-content/uploads/2022/12/PivotAll_Web-Logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("337","1","2022-12-30 19:45:39","2022-12-30 19:45:39","","Markpianoman","","inherit","open","closed","","markpianoman","","","2022-12-30 19:45:39","2022-12-30 19:45:39","","0","https://latitude39creative.com/wp-content/uploads/2022/12/Markpianoman.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("348","1","2023-01-26 03:38:34","2023-01-26 03:38:34","","Criativo - Creative Agency & Portfolio Elementor Template Kit","","publish","closed","closed","","criativo-creative-agency-portfolio-elementor-template-kit","","","2023-01-26 03:38:34","2023-01-26 03:38:34","","0","https://latitude39creative.com/?p=348","0","envato_tk_import","","0");
INSERT INTO 7ja_posts_backup VALUES("349","1","2023-01-26 03:39:10","2023-01-26 03:39:10","<label> Your name\n    [text* your-name autocomplete:name] </label>\n\n<label> Your email\n    [email* your-email autocomplete:email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@latitude39creative.com>\nben@latitude39creative.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@latitude39creative.com>\n[your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for contacting us! We will reach out to book your discovery call.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.\nPlease enter a date in YYYY-MM-DD format.\nThis field has a too early date.\nThis field has a too late date.\nPlease enter a number.\nThis field has a too small number.\nThis field has a too large number.\nThe answer to the quiz is incorrect.\nPlease enter an email address.\nPlease enter a URL.\nPlease enter a telephone number.","Contact Us!","","publish","closed","closed","","contact-form-1","","","2023-01-27 14:06:28","2023-01-27 14:06:28","","0","https://latitude39creative.com/?post_type=wpcf7_contact_form&#038;p=349","0","wpcf7_contact_form","","0");
INSERT INTO 7ja_posts_backup VALUES("353","1","2023-01-26 03:40:20","2023-01-26 03:40:20","<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"86\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Logo.png?fit=300%2C86&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Pages\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Contact Us\n											</a>\n									</li>\n						</ul>\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-pinterest\n											</a>\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © Criativo Creative Agency. All Right Reserved By Rometheme.</h6>","Footer","","publish","closed","closed","","footer-2","","","2023-01-26 03:40:21","2023-01-26 03:40:21","","0","https://latitude39creative.com/?elementor_library=footer-2","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("354","1","2023-01-26 03:40:21","2023-01-26 03:40:21","<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"86\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Logo.png?fit=300%2C86&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Pages\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Contact Us\n											</a>\n									</li>\n						</ul>\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-pinterest\n											</a>\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © Criativo Creative Agency. All Right Reserved By Rometheme.</h6>","Footer","","inherit","closed","closed","","353-revision-v1","","","2023-01-26 03:40:21","2023-01-26 03:40:21","","353","https://latitude39creative.com/?p=354","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("355","1","2023-01-26 03:40:32","2023-01-26 03:40:32","","portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg","","inherit","open","closed","","portrait-of-a-woman-with-artistic-make-up-p7zsu5p-jpg","","","2023-01-26 03:40:32","2023-01-26 03:40:32","","0","https://latitude39creative.com/wp-content/uploads/2023/01/portrait-of-a-woman-with-artistic-make-up-P7ZSU5P.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("356","1","2023-01-26 03:40:39","2023-01-26 03:40:39","","6-Brand-Identity.png","","inherit","open","closed","","6-brand-identity-png","","","2023-01-26 03:40:39","2023-01-26 03:40:39","","0","https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("357","1","2023-01-26 03:40:41","2023-01-26 03:40:41","","5-Web-Design.png","","inherit","open","closed","","5-web-design-png","","","2023-01-26 03:40:41","2023-01-26 03:40:41","","0","https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("358","1","2023-01-26 03:40:43","2023-01-26 03:40:43","","1-Ui-Ux.png","","inherit","open","closed","","1-ui-ux-png","","","2023-01-26 03:40:43","2023-01-26 03:40:43","","0","https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("359","1","2023-01-26 03:40:45","2023-01-26 03:40:45","","4-Video-Marketing.png","","inherit","open","closed","","4-video-marketing-png","","","2023-01-26 03:40:45","2023-01-26 03:40:45","","0","https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("360","1","2023-01-26 03:40:47","2023-01-26 03:40:47","","Untitled-1.png","","inherit","open","closed","","untitled-1-png","","","2023-01-26 03:40:47","2023-01-26 03:40:47","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("361","1","2023-01-26 03:40:49","2023-01-26 03:40:49","","Clean-Code.png","","inherit","open","closed","","clean-code-png","","","2023-01-26 03:40:49","2023-01-26 03:40:49","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Clean-Code.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("362","1","2023-01-26 03:40:51","2023-01-26 03:40:51","","Modern-Design.png","","inherit","open","closed","","modern-design-png","","","2023-01-26 03:40:51","2023-01-26 03:40:51","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Modern-Design.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("363","1","2023-01-26 03:40:53","2023-01-26 03:40:53","","1.jpg","","inherit","open","closed","","1-jpg","","","2023-01-26 03:40:53","2023-01-26 03:40:53","","0","https://latitude39creative.com/wp-content/uploads/2023/01/1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("364","1","2023-01-26 03:40:56","2023-01-26 03:40:56","","10-Project-Done.png","","inherit","open","closed","","10-project-done-png","","","2023-01-26 03:40:56","2023-01-26 03:40:56","","0","https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("365","1","2023-01-26 03:40:57","2023-01-26 03:40:57","","7-Happy-Costumer.png","","inherit","open","closed","","7-happy-costumer-png","","","2023-01-26 03:40:57","2023-01-26 03:40:57","","0","https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("366","1","2023-01-26 03:40:59","2023-01-26 03:40:59","","8-Award-Winning.png","","inherit","open","closed","","8-award-winning-png","","","2023-01-26 03:40:59","2023-01-26 03:40:59","","0","https://latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("367","1","2023-01-26 03:41:01","2023-01-26 03:41:01","","9-Team-Crew.png","","inherit","open","closed","","9-team-crew-png","","","2023-01-26 03:41:01","2023-01-26 03:41:01","","0","https://latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("372","1","2023-01-26 03:41:12","2023-01-26 03:41:12","","side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg","","inherit","open","closed","","side-view-portrait-of-a-woman-with-make-up-ctumauj-jpg","","","2023-01-26 03:41:12","2023-01-26 03:41:12","","0","https://latitude39creative.com/wp-content/uploads/2023/01/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("378","1","2023-01-26 03:41:24","2023-01-26 03:41:24","","apelah.jpg","","inherit","open","closed","","apelah-jpg","","","2023-01-26 03:41:24","2023-01-26 03:41:24","","0","https://latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("379","1","2023-01-26 03:41:27","2023-01-26 03:41:27","","11.jpg","","inherit","open","closed","","11-jpg","","","2023-01-26 03:41:27","2023-01-26 03:41:27","","0","https://latitude39creative.com/wp-content/uploads/2023/01/11.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("380","1","2023-01-26 03:41:35","2023-01-26 03:41:35","","Bg-1.jpg","","inherit","open","closed","","bg-1-jpg","","","2023-01-26 03:41:35","2023-01-26 03:41:35","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Bg-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("390","1","2023-01-26 03:42:05","2023-01-26 03:42:05","","adadad.jpg","","inherit","open","closed","","adadad-jpg","","","2023-01-26 03:42:05","2023-01-26 03:42:05","","0","https://latitude39creative.com/wp-content/uploads/2023/01/adadad.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("394","1","2023-01-26 03:42:21","2023-01-26 03:42:21","","bg-2.png","","inherit","open","closed","","bg-2-png","","","2023-01-26 03:42:21","2023-01-26 03:42:21","","0","https://latitude39creative.com/wp-content/uploads/2023/01/bg-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("403","1","2023-01-26 04:09:10","2023-01-26 04:09:10","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2023-01-26 04:09:10","2023-01-26 04:09:10","","9","https://latitude39creative.com/?p=403","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("404","1","2023-01-26 04:11:45","2023-01-26 04:11:45","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2023-01-26 04:11:45","2023-01-26 04:11:45","","9","https://latitude39creative.com/?p=404","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("415","0","2023-01-26 07:10:00","2023-01-26 07:10:00","<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>","","","publish","closed","closed","","7befe71c04536851b6485e7b012d3f0d","","","2023-01-26 07:10:00","2023-01-26 07:10:00","","0","https://latitude39creative.com/7befe71c04536851b6485e7b012d3f0d/","0","oembed_cache","","0");
INSERT INTO 7ja_posts_backup VALUES("428","1","2023-01-27 15:08:17","2023-01-27 15:08:17","<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Ooops.</h2>		\n			<h2> I Think You Got Lost.</h2>		\n			<h2>The Page You Were Looking For Couldn\'t Be Found.</h2>		\n			<a role=\"button\">\n						back to home page\n					</a>","404 Page","","inherit","closed","closed","","11-revision-v1","","","2023-01-27 15:08:17","2023-01-27 15:08:17","","11","https://latitude39creative.com/?p=428","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("433","1","2023-01-27 15:37:10","2023-01-27 15:37:10","","Digital Marketing Agency","","inherit","closed","closed","","9-revision-v1","","","2023-01-27 15:37:10","2023-01-27 15:37:10","","9","https://latitude39creative.com/?p=433","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("437","1","2023-01-27 18:40:01","2023-01-27 18:40:01","","a-aawfa.jpg","","inherit","open","closed","","a-aawfa-jpg","","","2023-01-27 18:40:01","2023-01-27 18:40:01","","0","https://latitude39creative.com/wp-content/uploads/2023/01/a-aawfa.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("438","1","2023-01-27 18:40:04","2023-01-27 18:40:04","","S-1.png","","inherit","open","closed","","s-1-png","","","2023-01-27 18:40:04","2023-01-27 18:40:04","","0","https://latitude39creative.com/wp-content/uploads/2023/01/S-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("443","1","2023-01-27 18:40:17","2023-01-27 18:40:17","<h2>About Criativo.</h2>		\n		<p><a href=\"#\">Home</a> / About Us</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"498\" height=\"647\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?fit=498%2C647&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						ABOUT US\n					</h5><h3>We Use Creativity to Get Our Clients.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"300\" height=\"279\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/S-1.png?fit=300%2C279&amp;ssl=1\" alt=\"\" loading=\"lazy\" /></figure><h4>Clean Code</h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"300\" height=\"279\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/S-1.png?fit=300%2C279&amp;ssl=1\" alt=\"\" loading=\"lazy\" /></figure><h4>Modern Design</h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-1.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-2.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-3.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-5.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-6.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a.</p><p>Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum. Donec non blandit elit.</p>		\n			<a href=\"#\" role=\"button\">\n						VIEW ALL\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    Branding                 </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    UI &amp; UX Design                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    UI &amp; UX Design                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    Web Development                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Project Done					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Costumer					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Award Winning					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Team Members					</h3>\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Cases.</h3>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.</p>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis\n									</li>\n								<li>\n										Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo.\n									</li>\n						</ul>\n                            <input type=\"radio\" name=\"ekit_ia_5f8f9984\" id=\"ekit_ia_5f8f9984_0\"  hidden>\n                <label for=\"ekit_ia_5f8f9984_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G9.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G9.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Brand Identity\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_1e701e99\" id=\"ekit_ia_1e701e99_0\"  hidden>\n                <label for=\"ekit_ia_1e701e99_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G5.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G5.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Web Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_18174712\" id=\"ekit_ia_18174712_0\"  hidden>\n                <label for=\"ekit_ia_18174712_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G4.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G4.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            UI &amp; UX Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4db6e37c\" id=\"ekit_ia_4db6e37c_0\"  hidden>\n                <label for=\"ekit_ia_4db6e37c_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G1.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G1.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Video Marketing\n                </label>\n			<h5>\n						OUR TEAM\n					</h5><h3>Meet Expert Team.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n															<img width=\"454\" height=\"406\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?fit=454%2C406&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?w=454&amp;ssl=1 454w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 454px) 100vw, 454px\" />															\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Mike Washoski</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"499\" height=\"446\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?fit=499%2C446&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?w=499&amp;ssl=1 499w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 499px) 100vw, 499px\" />															\n			<h4>Lexi Black</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"545\" height=\"487\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?fit=545%2C487&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?w=545&amp;ssl=1 545w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 545px) 100vw, 545px\" />															\n			<h4>Hanna Smith</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"536\" height=\"479\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?fit=536%2C479&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?w=536&amp;ssl=1 536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 536px) 100vw, 536px\" />															\n			<h4>Kevin Widagdo</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>","About Us","","publish","closed","closed","","about-us","","","2023-01-27 18:40:22","2023-01-27 18:40:22","","0","https://latitude39creative.com/?elementor_library=about-us","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("444","1","2023-01-27 18:40:22","2023-01-27 18:40:22","<h2>About Criativo.</h2>		\n		<p><a href=\"#\">Home</a> / About Us</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"498\" height=\"647\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?fit=498%2C647&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						ABOUT US\n					</h5><h3>We Use Creativity to Get Our Clients.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"300\" height=\"279\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/S-1.png?fit=300%2C279&amp;ssl=1\" alt=\"\" loading=\"lazy\" /></figure><h4>Clean Code</h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"300\" height=\"279\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/S-1.png?fit=300%2C279&amp;ssl=1\" alt=\"\" loading=\"lazy\" /></figure><h4>Modern Design</h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-1.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-2.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-3.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-5.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"300\" height=\"115\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-6.png?fit=300%2C115&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a.</p><p>Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum. Donec non blandit elit.</p>		\n			<a href=\"#\" role=\"button\">\n						VIEW ALL\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    Branding                 </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    UI &amp; UX Design                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    UI &amp; UX Design                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"279\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/S-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h4>\n                    Web Development                </h4>\n                        		  <p>We bring the right people together to challenge</p>\n                </a>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Project Done					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Costumer					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/8-Award-Winning.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Award Winning					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?fit=300%2C300&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/9-Team-Crew.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Team Members					</h3>\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Cases.</h3>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis ipsum.</p>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Donec eros sem, rhoncus eu pellentesque sit amet, congue venenatis\n									</li>\n								<li>\n										Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo.\n									</li>\n						</ul>\n                            <input type=\"radio\" name=\"ekit_ia_5f8f9984\" id=\"ekit_ia_5f8f9984_0\"  hidden>\n                <label for=\"ekit_ia_5f8f9984_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G9.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G9.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Brand Identity\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_1e701e99\" id=\"ekit_ia_1e701e99_0\"  hidden>\n                <label for=\"ekit_ia_1e701e99_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G5.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G5.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Web Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_18174712\" id=\"ekit_ia_18174712_0\"  hidden>\n                <label for=\"ekit_ia_18174712_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G4.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G4.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            UI &amp; UX Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4db6e37c\" id=\"ekit_ia_4db6e37c_0\"  hidden>\n                <label for=\"ekit_ia_4db6e37c_0\" style=\"background-image: url(https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G1.jpg)\" >\n                                                        <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/G1.jpg\" data-elementor-open-lightbox=\"yes\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Video Marketing\n                </label>\n			<h5>\n						OUR TEAM\n					</h5><h3>Meet Expert Team.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n															<img width=\"454\" height=\"406\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?fit=454%2C406&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?w=454&amp;ssl=1 454w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T1.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 454px) 100vw, 454px\" />															\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Mike Washoski</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n			<style>/*! elementor - v3.10.1 - 17-01-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"499\" height=\"446\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?fit=499%2C446&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?w=499&amp;ssl=1 499w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T3.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 499px) 100vw, 499px\" />															\n			<h4>Lexi Black</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"545\" height=\"487\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?fit=545%2C487&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?w=545&amp;ssl=1 545w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T2.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 545px) 100vw, 545px\" />															\n			<h4>Hanna Smith</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n															<img width=\"536\" height=\"479\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?fit=536%2C479&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?w=536&amp;ssl=1 536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/T4.png?resize=300%2C268&amp;ssl=1 300w\" sizes=\"(max-width: 536px) 100vw, 536px\" />															\n			<h4>Kevin Widagdo</h4>		\n			<h6>Designer</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>","About Us","","inherit","closed","closed","","443-revision-v1","","","2023-01-27 18:40:22","2023-01-27 18:40:22","","443","https://latitude39creative.com/?p=444","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("448","1","2023-01-27 18:48:11","2023-01-27 18:48:11","","IpadYellowTrans (1)","","inherit","open","closed","","ipadyellowtrans-1","","","2023-01-27 18:48:11","2023-01-27 18:48:11","","0","https://latitude39creative.com/wp-content/uploads/2023/01/IpadYellowTrans-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("449","1","2023-01-27 18:49:26","2023-01-27 18:49:26","","Blueprint Financial","","inherit","open","closed","","blueprint-financial","","","2023-01-27 18:49:26","2023-01-27 18:49:26","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Blueprint-Financial.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("450","1","2023-01-27 18:51:29","2023-01-27 18:51:29","","GW BG Template (1)","","inherit","open","closed","","gw-bg-template-1","","","2023-01-27 18:51:29","2023-01-27 18:51:29","","0","https://latitude39creative.com/wp-content/uploads/2023/01/GW-BG-Template-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("452","1","2023-01-27 18:52:38","2023-01-27 18:52:38","","Pianoonbeach (1)","","inherit","open","closed","","pianoonbeach-1","","","2023-01-27 18:52:38","2023-01-27 18:52:38","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("453","1","2023-01-27 18:53:08","2023-01-27 18:53:08","","Pints and Peaks","","inherit","open","closed","","pints-and-peaks","","","2023-01-27 18:53:08","2023-01-27 18:53:08","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Pints-and-Peaks.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("454","1","2023-01-27 18:53:48","2023-01-27 18:53:48","","10-essentials-1-768x1024","","inherit","open","closed","","10-essentials-1-768x1024","","","2023-01-27 18:53:48","2023-01-27 18:53:48","","0","https://latitude39creative.com/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("455","1","2023-01-27 18:55:01","2023-01-27 18:55:01","","Summer-Hiking-Series-Correct-1024x576","","inherit","open","closed","","summer-hiking-series-correct-1024x576","","","2023-01-27 18:55:01","2023-01-27 18:55:01","","0","https://latitude39creative.com/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("456","1","2023-01-27 19:10:52","2023-01-27 19:10:52","","Screenshot 2023-01-27 12.09.47 PM - Display 2","","inherit","open","closed","","screenshot-2023-01-27-12-09-47-pm-display-2","","","2023-01-27 19:10:52","2023-01-27 19:10:52","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("457","1","2023-01-27 19:14:22","2023-01-27 19:14:22","","Screenshot 2023-01-27 12.13.16 PM - Display 2","","inherit","open","closed","","screenshot-2023-01-27-12-13-16-pm-display-2","","","2023-01-27 19:14:22","2023-01-27 19:14:22","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.13.16-PM-Display-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("458","1","2023-01-27 19:16:16","2023-01-27 19:16:16","","Gokyo-Lake-1","","inherit","open","closed","","gokyo-lake-1","","","2023-01-27 19:16:16","2023-01-27 19:16:16","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Gokyo-Lake-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("460","1","2023-01-27 19:21:13","2023-01-27 19:21:13","","Hike video","","inherit","open","closed","","hike-video","","","2023-01-27 19:21:13","2023-01-27 19:21:13","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4","0","attachment","video/mp4","0");
INSERT INTO 7ja_posts_backup VALUES("461","1","2023-01-27 19:26:54","2023-01-27 19:26:54","","hike-walkway-857x1024","","inherit","open","closed","","hike-walkway-857x1024","","","2023-01-27 19:26:54","2023-01-27 19:26:54","","169","https://latitude39creative.com/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("487","1","2023-01-29 18:10:12","2023-01-29 18:10:12","","Screenshot 2023-01-29 11.01.56 AM - Display 1","","inherit","open","closed","","screenshot-2023-01-29-11-01-56-am-display-1","","","2023-01-29 18:10:12","2023-01-29 18:10:12","","169","https://latitude39creative.com/wp-content/uploads/2023/01/Screenshot-2023-01-29-11.01.56-AM-Display-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("488","1","2023-01-29 18:10:47","2023-01-29 18:10:47","","UnlimitedOutdoors_WEB4Color1-1 (1)","","inherit","open","closed","","unlimitedoutdoors_web4color1-1-1","","","2023-01-29 18:10:47","2023-01-29 18:10:47","","169","https://latitude39creative.com/wp-content/uploads/2023/01/UnlimitedOutdoors_WEB4Color1-1-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("514","1","2023-01-30 03:35:35","2023-01-30 03:35:35","<h3>Who We Are.</h3>","Who we are1","","publish","closed","closed","","who-we-are1","","","2023-01-30 03:35:37","2023-01-30 03:35:37","","0","https://latitude39creative.com/?elementor_library=who-we-are1","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("515","1","2023-01-30 03:35:37","2023-01-30 03:35:37","","Who we are1","","inherit","closed","closed","","514-revision-v1","","","2023-01-30 03:35:37","2023-01-30 03:35:37","","514","https://latitude39creative.com/?p=515","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("516","1","2023-01-30 03:35:37","2023-01-30 03:35:37","<h3>Who We Are.</h3>","Who we are1","","inherit","closed","closed","","514-revision-v1","","","2023-01-30 03:35:37","2023-01-30 03:35:37","","514","https://latitude39creative.com/?p=516","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("517","1","2023-01-30 03:35:54","2023-01-30 03:35:54","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and everything Design</h6>","Who we are2","","publish","closed","closed","","who-we-are2","","","2023-01-30 03:35:55","2023-01-30 03:35:55","","0","https://latitude39creative.com/?elementor_library=who-we-are2","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("518","1","2023-01-30 03:35:55","2023-01-30 03:35:55","","Who we are2","","inherit","closed","closed","","517-revision-v1","","","2023-01-30 03:35:55","2023-01-30 03:35:55","","517","https://latitude39creative.com/?p=518","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("519","1","2023-01-30 03:35:55","2023-01-30 03:35:55","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and everything Design</h6>","Who we are2","","inherit","closed","closed","","517-revision-v1","","","2023-01-30 03:35:55","2023-01-30 03:35:55","","517","https://latitude39creative.com/?p=519","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("520","1","2023-01-30 03:36:29","2023-01-30 03:36:29","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Projects					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Customers					</h3>","Why choose us3","","publish","closed","closed","","why-choose-us3","","","2023-01-30 03:36:30","2023-01-30 03:36:30","","0","https://latitude39creative.com/?elementor_library=why-choose-us3","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("521","1","2023-01-30 03:36:30","2023-01-30 03:36:30","","Why choose us3","","inherit","closed","closed","","520-revision-v1","","","2023-01-30 03:36:30","2023-01-30 03:36:30","","520","https://latitude39creative.com/?p=521","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("522","1","2023-01-30 03:36:30","2023-01-30 03:36:30","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Projects					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Customers					</h3>","Why choose us3","","inherit","closed","closed","","520-revision-v1","","","2023-01-30 03:36:30","2023-01-30 03:36:30","","520","https://latitude39creative.com/?p=522","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("526","1","2023-01-30 03:46:03","2023-01-30 03:46:03","","About","","publish","closed","closed","","about","","","2023-01-30 03:46:03","2023-01-30 03:46:03","","0","https://latitude39creative.com/?p=526","2","nav_menu_item","","0");
INSERT INTO 7ja_posts_backup VALUES("536","1","2023-01-30 03:54:34","2023-01-30 03:54:34","","portrait-of-a-woman-with-artistic-make-up","","inherit","open","closed","","portrait-of-a-woman-with-artistic-make-up","","","2023-01-30 03:54:34","2023-01-30 03:54:34","","131","https://latitude39creative.com/wp-content/uploads/2023/01/portrait-of-a-woman-with-artistic-make-up.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("537","1","2023-01-30 04:02:17","2023-01-30 04:02:17","<h2>Testimonials</h2>		\n		<p><a href=\"#\">Home</a> / Testimonials</p>		\n			<h5>\n						TESTIMONIALS\n					</h5><h3>What Client Says.</h3>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n	<ul></ul>\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n	<ul></ul>","Testimonials","","publish","closed","closed","","testimonials","","","2023-01-30 04:02:19","2023-01-30 04:02:19","","0","https://latitude39creative.com/?elementor_library=testimonials","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("538","1","2023-01-30 04:02:19","2023-01-30 04:02:19","<h2>Testimonials</h2>		\n		<p><a href=\"#\">Home</a> / Testimonials</p>		\n			<h5>\n						TESTIMONIALS\n					</h5><h3>What Client Says.</h3>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n	<ul></ul>\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>\n											<img width=\"1920\" height=\"1280\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?fit=1920%2C1280&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/11.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />										\n										<strong>Adam Smith</strong>\n										Businessman\n	<ul></ul>","Testimonials","","inherit","closed","closed","","537-revision-v1","","","2023-01-30 04:02:19","2023-01-30 04:02:19","","537","https://latitude39creative.com/?p=538","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("556","1","2023-02-07 20:17:03","2023-02-07 20:17:03","<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategies, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\" role=\"button\">\n						Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>","What we do","","publish","closed","closed","","what-we-do","","","2023-02-07 20:17:13","2023-02-07 20:17:13","","0","https://latitude39creative.com/?elementor_library=what-we-do","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("557","1","2023-02-07 20:17:13","2023-02-07 20:17:13","","What we do","","inherit","closed","closed","","556-revision-v1","","","2023-02-07 20:17:13","2023-02-07 20:17:13","","556","https://latitude39creative.com/?p=557","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("558","1","2023-02-07 20:17:13","2023-02-07 20:17:13","<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategies, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\" role=\"button\">\n						Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>","What we do","","inherit","closed","closed","","556-revision-v1","","","2023-02-07 20:17:13","2023-02-07 20:17:13","","556","https://latitude39creative.com/?p=558","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("559","1","2023-02-07 22:14:23","2023-02-07 22:14:23","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>","why choose us","","publish","closed","closed","","why-choose-us-2","","","2023-02-07 22:14:28","2023-02-07 22:14:28","","0","https://latitude39creative.com/?elementor_library=why-choose-us-2","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("560","1","2023-02-07 22:14:28","2023-02-07 22:14:28","","why choose us","","inherit","closed","closed","","559-revision-v1","","","2023-02-07 22:14:28","2023-02-07 22:14:28","","559","https://latitude39creative.com/?p=560","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("561","1","2023-02-07 22:14:28","2023-02-07 22:14:28","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>","why choose us","","inherit","closed","closed","","559-revision-v1","","","2023-02-07 22:14:28","2023-02-07 22:14:28","","559","https://latitude39creative.com/?p=561","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("562","1","2023-02-07 22:17:00","2023-02-07 22:17:00","<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Video Marketing</h2>		\n<a href=\"#test-popup-link7bcbc7a0\">\n						</a>	\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n										<p>Coming Soon!</p>","Our latest projects","","publish","closed","closed","","our-latest-projects","","","2023-02-07 22:17:02","2023-02-07 22:17:02","","0","https://latitude39creative.com/?elementor_library=our-latest-projects","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("563","1","2023-02-07 22:17:02","2023-02-07 22:17:02","","Our latest projects","","inherit","closed","closed","","562-revision-v1","","","2023-02-07 22:17:02","2023-02-07 22:17:02","","562","https://latitude39creative.com/?p=563","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("564","1","2023-02-07 22:17:02","2023-02-07 22:17:02","<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Video Marketing</h2>		\n<a href=\"#test-popup-link7bcbc7a0\">\n						</a>	\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n										<p>Coming Soon!</p>","Our latest projects","","inherit","closed","closed","","562-revision-v1","","","2023-02-07 22:17:02","2023-02-07 22:17:02","","562","https://latitude39creative.com/?p=564","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("568","1","2023-02-07 22:37:47","2023-02-07 22:37:47","<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1712\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Scribble-scaled.jpg\" alt=\"\" loading=\"lazy\" />						\n								<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/feck-perfuction/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\"></a>\n														<h2>\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/feck-perfuction/\" target=\"_blank\" rel=\"noopener\">\n				Feck Perfuction!			</a>\n		</h2>\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/author/latitude39creative/\" title=\"Posts by latitude39creative\" rel=\"author\">latitude39creative</a>				\n							•\n					December 14, 2022\n							•\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n					<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much …</p>","Blog","","publish","closed","closed","","blog","","","2023-02-07 22:37:48","2023-02-07 22:37:48","","0","https://latitude39creative.com/?elementor_library=blog","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("569","1","2023-02-07 22:37:48","2023-02-07 22:37:48","","Blog","","inherit","closed","closed","","568-revision-v1","","","2023-02-07 22:37:48","2023-02-07 22:37:48","","568","https://latitude39creative.com/?p=569","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("570","1","2023-02-07 22:37:48","2023-02-07 22:37:48","<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1712\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Scribble-scaled.jpg\" alt=\"\" loading=\"lazy\" />						\n								<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/feck-perfuction/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\"></a>\n														<h2>\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/feck-perfuction/\" target=\"_blank\" rel=\"noopener\">\n				Feck Perfuction!			</a>\n		</h2>\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/author/latitude39creative/\" title=\"Posts by latitude39creative\" rel=\"author\">latitude39creative</a>				\n							•\n					December 14, 2022\n							•\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n					<p>I’m a recovering perfectionist. I have rewritten this paragraph a number of times. More than ten, if we are counting. So much …</p>","Blog","","inherit","closed","closed","","568-revision-v1","","","2023-02-07 22:37:48","2023-02-07 22:37:48","","568","https://latitude39creative.com/?p=570","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("600","1","2023-02-08 22:49:27","2023-02-08 22:49:27","","Elementor-post-screenshot_11_2023-02-08-22-49-27_315d68aa.png","","inherit","open","closed","","elementor-post-screenshot_11_2023-02-08-22-49-27_315d68aa-png","","","2023-02-08 22:49:27","2023-02-08 22:49:27","","11","https://latitude39creative.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_11_2023-02-08-22-49-27_315d68aa.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("601","1","2023-02-08 22:49:29","2023-02-08 22:49:29","","Elementor Header #601","","publish","closed","closed","","elementor-header-601","","","2023-02-15 18:56:14","2023-02-15 18:56:14","","0","https://latitude39creative.com/?post_type=elementor_library&#038;p=601","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("602","1","2023-02-08 22:49:29","2023-02-08 22:49:29","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 22:49:29","2023-02-08 22:49:29","","601","https://latitude39creative.com/?p=602","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("604","1","2023-02-08 22:50:30","2023-02-08 22:50:30","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"86\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/Logo.png?fit=300%2C86&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			        <a href=\"#ekit_modal-popup-63e603c0\">\n                    </a>\n        <!-- language switcher strart -->\n        <!-- xs modal -->\n            <!-- Polylang search - thanks to Alain Melsens -->\n                <form role=\"search\" method=\"get\" action=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">\n                    <input type=\"search\" placeholder=\"Search...\" value=\"\" name=\"s\" />\n                    <button type=\"submit\">\n                                            </button>\n                </form>\n        <!-- End xs modal -->\n        <!-- end language switcher strart -->","Header","","publish","closed","closed","","header","","","2023-02-08 22:50:32","2023-02-08 22:50:32","","0","https://latitude39creative.com/?elementor_library=header","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("605","1","2023-02-08 22:50:32","2023-02-08 22:50:32","<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"300\" height=\"86\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/Logo.png?fit=300%2C86&amp;ssl=1\" alt=\"\" loading=\"lazy\" />															\n			        <a href=\"#ekit_modal-popup-63e603c0\">\n                    </a>\n        <!-- language switcher strart -->\n        <!-- xs modal -->\n            <!-- Polylang search - thanks to Alain Melsens -->\n                <form role=\"search\" method=\"get\" action=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">\n                    <input type=\"search\" placeholder=\"Search...\" value=\"\" name=\"s\" />\n                    <button type=\"submit\">\n                                            </button>\n                </form>\n        <!-- End xs modal -->\n        <!-- end language switcher strart -->","Header","","inherit","closed","closed","","604-revision-v1","","","2023-02-08 22:50:32","2023-02-08 22:50:32","","604","https://latitude39creative.com/?p=605","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("606","1","2023-02-08 22:57:40","2023-02-08 22:57:40","<button>\n                            </button>\n            <ul id=\"menu-menu\"><li id=\"menu-item-192\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Home</a></li>\n<li id=\"menu-item-189\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/about/\">About</a></li>\n<li id=\"menu-item-193\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\">Services</a></li>\n<li id=\"menu-item-190\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/clients/\">Current Projects</a></li>\n<li id=\"menu-item-317\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/blog/\">Blog</a></li>\n</ul>\n						<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac\" target=\"_self\" rel=\"noopener\">\n                            <img src=\"\" title=\"\" alt=\"\" />\n						</a> \n					<button type=\"button\">X</button>","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 22:57:40","2023-02-08 22:57:40","","601","https://latitude39creative.com/?p=606","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("607","1","2023-02-08 22:58:00","2023-02-08 22:58:00","<button>\n                            </button>\n            <ul id=\"menu-menu\"><li id=\"menu-item-192\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Home</a></li>\n<li id=\"menu-item-189\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/about/\">About</a></li>\n<li id=\"menu-item-193\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\">Services</a></li>\n<li id=\"menu-item-190\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/clients/\">Current Projects</a></li>\n<li id=\"menu-item-317\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/blog/\">Blog</a></li>\n</ul>\n						<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac\" target=\"_self\" rel=\"noopener\">\n                            <img src=\"\" title=\"\" alt=\"\" />\n						</a> \n					<button type=\"button\">X</button>","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 22:58:00","2023-02-08 22:58:00","","601","https://latitude39creative.com/?p=607","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("608","1","2023-02-08 22:58:12","2023-02-08 22:58:12","<button>\n                            </button>\n            <ul id=\"menu-menu\"><li id=\"menu-item-192\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Home</a></li>\n<li id=\"menu-item-189\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/about/\">About</a></li>\n<li id=\"menu-item-193\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\">Services</a></li>\n<li id=\"menu-item-190\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/clients/\">Current Projects</a></li>\n<li id=\"menu-item-317\" data-vertical-menu=750px><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/blog/\">Blog</a></li>\n</ul>\n						<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac\" target=\"_self\" rel=\"noopener\">\n                            <img src=\"\" title=\"\" alt=\"\" />\n						</a> \n					<button type=\"button\">X</button>","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 22:58:12","2023-02-08 22:58:12","","601","https://latitude39creative.com/?p=608","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("609","1","2023-02-08 23:01:11","2023-02-08 23:01:11","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-08 23:01:11","2023-02-08 23:01:11","","601","https://latitude39creative.com/?p=609","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("613","1","2023-02-14 21:05:33","2023-02-14 21:05:33","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/GW-logo.png\" alt=\"GW-logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/blueprintfinlogo.webp\" alt=\"blueprintfinlogo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" alt=\"BFD-main-logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/PivotAll_Web-Logo.png\" alt=\"PivotAll_Web-Logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Markpianoman.png\" alt=\"Markpianoman\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/UnlimitedOutdoors_WEB4Color1-1-1.jpg\" alt=\"UnlimitedOutdoors_WEB4Color1-1 (1)\" /></figure>			\n												Previous\n												Next","Client list","","publish","closed","closed","","client-list","","","2023-02-14 21:05:38","2023-02-14 21:05:38","","0","https://latitude39creative.com/?elementor_library=client-list","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("614","1","2023-02-14 21:05:38","2023-02-14 21:05:38","","Client list","","inherit","closed","closed","","613-revision-v1","","","2023-02-14 21:05:38","2023-02-14 21:05:38","","613","https://latitude39creative.com/?p=614","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("615","1","2023-02-14 21:05:38","2023-02-14 21:05:38","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/GW-logo.png\" alt=\"GW-logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/blueprintfinlogo.webp\" alt=\"blueprintfinlogo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" alt=\"BFD-main-logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/PivotAll_Web-Logo.png\" alt=\"PivotAll_Web-Logo\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Markpianoman.png\" alt=\"Markpianoman\" /></figure><figure><img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/UnlimitedOutdoors_WEB4Color1-1-1.jpg\" alt=\"UnlimitedOutdoors_WEB4Color1-1 (1)\" /></figure>			\n												Previous\n												Next","Client list","","inherit","closed","closed","","613-revision-v1","","","2023-02-14 21:05:38","2023-02-14 21:05:38","","613","https://latitude39creative.com/?p=615","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("638","1","2023-02-14 22:11:36","2023-02-14 22:11:36","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-14 22:11:36","2023-02-14 22:11:36","","601","https://latitude39creative.com/?p=638","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("649","1","2023-02-14 22:17:17","2023-02-14 22:17:17","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n								</a>\n				<h4>\n					<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n						Email Us					</a>\n				</h4>\n									<p>\n						Ben@latitude39creative.com					</p>","Contact us","","publish","closed","closed","","contact-us-2","","","2023-02-15 15:02:06","2023-02-15 15:02:06","","0","https://latitude39creative.com/?elementor_library=contact-us-2","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("650","1","2023-02-14 22:17:19","2023-02-14 22:17:19","","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-14 22:17:19","2023-02-14 22:17:19","","649","https://latitude39creative.com/?p=650","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("651","1","2023-02-14 22:17:20","2023-02-14 22:17:20","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						+(827) 123 - 456 - 7891					</p>\n				<h4>\n						Mail Us					\n				</h4>\n									<p>\n						info@evaniayogastudio.com					</p>","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-14 22:17:20","2023-02-14 22:17:20","","649","https://latitude39creative.com/?p=651","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("658","1","2023-02-14 22:34:34","2023-02-14 22:34:34","","placeholder.png","","inherit","open","closed","","placeholder-png","","","2023-02-14 22:34:34","2023-02-14 22:34:34","","0","https://latitude39creative.com/wp-content/uploads/2023/02/placeholder.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("659","1","2023-02-14 22:34:35","2023-02-14 22:34:35","<h1>Portfolio Carousel</h1>		\n		<p><a href=\"#\">Home</a> / Portfolio Carousel</p>		\n			<h5>\n						PORTFOLIO\n					</h5><h3>Latest  Work.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G15.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G15.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G16.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G16.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G17.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G17.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G18.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G18.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G19.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G19.jpg\" /></figure>","Portfolio 2","","publish","closed","closed","","portfolio-2","","","2023-02-14 22:34:37","2023-02-14 22:34:37","","0","https://latitude39creative.com/?elementor_library=portfolio-2","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("660","1","2023-02-14 22:34:37","2023-02-14 22:34:37","<h1>Portfolio Carousel</h1>		\n		<p><a href=\"#\">Home</a> / Portfolio Carousel</p>		\n			<h5>\n						PORTFOLIO\n					</h5><h3>Latest  Work.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G15.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G15.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G16.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G16.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G17.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G17.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G18.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G18.jpg\" /></figure><figure><img src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/G19.jpg?fit=900%2C500&amp;ssl=1\" alt=\"G19.jpg\" /></figure>","Portfolio 2","","inherit","closed","closed","","659-revision-v1","","","2023-02-14 22:34:37","2023-02-14 22:34:37","","659","https://latitude39creative.com/?p=660","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("679","1","2023-02-15 02:57:02","2023-02-15 02:57:02","<h2>Services</h2>","Services Hero","","publish","closed","closed","","services-hero","","","2023-02-15 02:57:04","2023-02-15 02:57:04","","0","https://latitude39creative.com/?elementor_library=services-hero","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("680","1","2023-02-15 02:57:03","2023-02-15 02:57:03","","Services Hero","","inherit","closed","closed","","679-revision-v1","","","2023-02-15 02:57:03","2023-02-15 02:57:03","","679","https://latitude39creative.com/?p=680","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("681","1","2023-02-15 02:57:04","2023-02-15 02:57:04","<h2>Services</h2>","Services Hero","","inherit","closed","closed","","679-revision-v1","","","2023-02-15 02:57:04","2023-02-15 02:57:04","","679","https://latitude39creative.com/?p=681","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("700","1","2023-02-15 03:07:37","2023-02-15 03:07:37","","Latitude39logo","","inherit","open","closed","","latitude39logo","","","2023-02-15 03:07:37","2023-02-15 03:07:37","","0","https://latitude39creative.com/wp-content/uploads/2023/02/Latitude39logo.html","0","attachment","text/html","0");
INSERT INTO 7ja_posts_backup VALUES("704","1","2023-02-15 03:17:43","2023-02-15 03:17:43","","Latitude Logo-02","","inherit","open","closed","","latitude-logo-02-2","","","2023-02-15 03:17:43","2023-02-15 03:17:43","","0","https://latitude39creative.com/wp-content/uploads/2023/02/Latitude-Logo-02-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("706","1","2023-02-15 03:21:43","2023-02-15 03:21:43","","premium-addons-logo","","inherit","open","closed","","premium-addons-logo","","","2023-02-15 03:21:43","2023-02-15 03:21:43","","0","https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("707","1","2023-02-15 03:22:21","2023-02-15 03:22:21","","leap13-logo","","inherit","open","closed","","leap13-logo","","","2023-02-15 03:22:21","2023-02-15 03:22:21","","0","https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("709","1","2023-02-15 03:30:39","2023-02-15 03:30:39","","elementor-logo","","inherit","open","closed","","elementor-logo","","","2023-02-15 03:30:39","2023-02-15 03:30:39","","169","https://latitude39creative.com/wp-content/uploads/2023/02/elementor-logo.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("710","1","2023-02-15 03:34:05","2023-02-15 03:34:05","","elementorlogo_","","inherit","open","closed","","elementorlogo_","","","2023-02-15 03:34:05","2023-02-15 03:34:05","","169","https://latitude39creative.com/wp-content/uploads/2023/02/elementorlogo_.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("715","1","2023-02-15 03:39:50","2023-02-15 03:39:50","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.facebook.com/latitude39creative\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"https://www.instagram.com/latitude39creative/\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © 2023 | Latitude39Creative</h6>","Elementor Footer #715","","publish","closed","closed","","elementor-footer-715","","","2023-02-15 03:49:56","2023-02-15 03:49:56","","0","https://latitude39creative.com/?post_type=elementor_library&#038;p=715","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("716","1","2023-02-15 03:39:50","2023-02-15 03:39:50","","Elementor Footer #715","","inherit","closed","closed","","715-revision-v1","","","2023-02-15 03:39:50","2023-02-15 03:39:50","","715","https://latitude39creative.com/?p=716","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("718","1","2023-02-15 03:49:37","2023-02-15 03:49:37","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.facebook.com/latitude39creative\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"https://www.instagram.com/latitude39creative/\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © 2023 Latitude39Creative</h6>","Elementor Footer #715","","inherit","closed","closed","","715-revision-v1","","","2023-02-15 03:49:37","2023-02-15 03:49:37","","715","https://latitude39creative.com/?p=718","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("719","1","2023-02-15 03:49:56","2023-02-15 03:49:56","<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.facebook.com/latitude39creative\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"https://www.instagram.com/latitude39creative/\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Copyright © 2023 | Latitude39Creative</h6>","Elementor Footer #715","","inherit","closed","closed","","715-revision-v1","","","2023-02-15 03:49:56","2023-02-15 03:49:56","","715","https://latitude39creative.com/?p=719","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("729","1","2023-02-15 04:00:59","2023-02-15 04:00:59","","Elementor-post-screenshot_715_2023-02-15-04-00-59_4afffbf1.png","","inherit","open","closed","","elementor-post-screenshot_715_2023-02-15-04-00-59_4afffbf1-png","","","2023-02-15 04:00:59","2023-02-15 04:00:59","","715","https://latitude39creative.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_715_2023-02-15-04-00-59_4afffbf1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("730","1","2023-02-15 04:01:40","2023-02-15 04:01:40","<h1>Single Project</h1>		\n		<p><a href=\"#\">Home</a> / Single Project</p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>June 03, 2021</p>		\n			<h4>Content Video Marketing</h4>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. </p>		\n			<h6>Client</h6>		\n			<h6>Rometheme</h6>		\n			<h6>Project</h6>		\n			<h6>Video Marketing</h6>		\n			<h6>Website</h6>		\n			<h6>www.yourwebsitehere.com</h6>		\n			<h6>Social Media</h6>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"450\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?fit=800%2C450&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>\nIntroduction & Challenge</h4>		\n		<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.</p><p>Augue neque gravida in fermentum et. Urna et pharetra pharetra massa massa ultricies mi. In massa tempor nec feugiat nisl pretium fusce. Eu lobortis elementum nibh tellus molestie nunc non.</p>https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h4>Innovation will Almost always beat mere Talent</h4>		\n		<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.</p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h6>Share :</h6>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>","Single Project","","publish","closed","closed","","single-project","","","2023-02-15 04:01:42","2023-02-15 04:01:42","","0","https://latitude39creative.com/?elementor_library=single-project","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("731","1","2023-02-15 04:01:42","2023-02-15 04:01:42","<h1>Single Project</h1>		\n		<p><a href=\"#\">Home</a> / Single Project</p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>June 03, 2021</p>		\n			<h4>Content Video Marketing</h4>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a porta sed, lacinia eu lectus. Ut volutpat commodo ipsum at volutpat. </p>		\n			<h6>Client</h6>		\n			<h6>Rometheme</h6>		\n			<h6>Project</h6>		\n			<h6>Video Marketing</h6>		\n			<h6>Website</h6>		\n			<h6>www.yourwebsitehere.com</h6>		\n			<h6>Social Media</h6>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"450\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?fit=800%2C450&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?w=1920&amp;ssl=1 1920w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>\nIntroduction & Challenge</h4>		\n		<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.</p><p>Augue neque gravida in fermentum et. Urna et pharetra pharetra massa massa ultricies mi. In massa tempor nec feugiat nisl pretium fusce. Eu lobortis elementum nibh tellus molestie nunc non.</p>https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h4>Innovation will Almost always beat mere Talent</h4>		\n		<p>Id interdum velit laoreet id. Pharetra sit amet aliquam id. Fermentum dui faucibus in ornare quam viverra orci. Sit amet aliquam id diam maecenas ultricies. Quam pellentesque nec nam aliquam sem et tortor. Senectus et netus et malesuada fames ac. Praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Amet purus gravida quis blandit turpis cursus in. Nec feugiat nisl pretium fusce id velit ut tortor pretium. Viverra suspendisse potenti nullam ac tortor vitae purus faucibus. Sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus. Felis donec et odio pellentesque.</p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h6>Share :</h6>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>","Single Project","","inherit","closed","closed","","730-revision-v1","","","2023-02-15 04:01:42","2023-02-15 04:01:42","","730","https://latitude39creative.com/?p=731","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("732","1","2023-02-15 04:11:28","2023-02-15 04:11:28","<h1> Blog</h1>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h1> Share This Post</h1>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>More To Explore</h2>","Single Post","","inherit","closed","closed","","24-revision-v1","","","2023-02-15 04:11:28","2023-02-15 04:11:28","","24","https://latitude39creative.com/?p=732","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("733","1","2023-02-15 04:12:18","2023-02-15 04:12:18","<h1> Blog</h1>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h1> Share This Post</h1>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\">		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>More To Explore</h2>","Single Post","","inherit","closed","closed","","24-revision-v1","","","2023-02-15 04:12:18","2023-02-15 04:12:18","","24","https://latitude39creative.com/?p=733","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("734","1","2023-02-15 04:12:46","2023-02-15 04:12:46","","Elementor-post-screenshot_24_2023-02-15-04-12-46_373262ba.png","","inherit","open","closed","","elementor-post-screenshot_24_2023-02-15-04-12-46_373262ba-png","","","2023-02-15 04:12:46","2023-02-15 04:12:46","","24","https://latitude39creative.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_24_2023-02-15-04-12-46_373262ba.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("738","1","2023-02-15 04:13:31","2023-02-15 04:13:31","<h1>Latest News</h1>		\n		<p><a href=\"#\">Home</a> / Latest News</p>		\n			<h5>\n						OUR BLOG\n					</h5><h3>Our Latest News.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Consectetur Adipiscing Elit Curabitur Vel Ornare</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Ut Sagittis Consectetur Ante t Tincidunt</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>In HacHhabitasse Platea<br>Dictumst</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Ut Sagittis Consectetur Ante t Tincidunt</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>In HacHhabitasse Platea<br>Dictumst</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Consectetur Adipiscing Elit Curabitur Vel Ornare</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>","Latest News","","publish","closed","closed","","latest-news","","","2023-02-15 04:13:34","2023-02-15 04:13:34","","0","https://latitude39creative.com/?elementor_library=latest-news","0","elementor_library","","0");
INSERT INTO 7ja_posts_backup VALUES("739","1","2023-02-15 04:13:34","2023-02-15 04:13:34","<h1>Latest News</h1>		\n		<p><a href=\"#\">Home</a> / Latest News</p>		\n			<h5>\n						OUR BLOG\n					</h5><h3>Our Latest News.</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum facilisis quam eget ex blandit cursus. Proin est magna, semper a. Donec eros sem, rhoncus eu pellentesque sit amet, </p>		\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.0 - 13-02-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Consectetur Adipiscing Elit Curabitur Vel Ornare</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Ut Sagittis Consectetur Ante t Tincidunt</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>In HacHhabitasse Platea<br>Dictumst</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N2.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Ut Sagittis Consectetur Ante t Tincidunt</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N3.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>In HacHhabitasse Platea<br>Dictumst</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>\n															<img width=\"800\" height=\"533\" src=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?fit=800%2C533&amp;ssl=1\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/N1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h4>Consectetur Adipiscing Elit Curabitur Vel Ornare</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vel ornare odio, eget sagittis nisl. Nullam vulputate ris.</p>		\n					<ul>\n							<li>\n										June 03, 2021\n									</li>\n								<li>\n										Business\n									</li>\n						</ul>","Latest News","","inherit","closed","closed","","738-revision-v1","","","2023-02-15 04:13:34","2023-02-15 04:13:34","","738","https://latitude39creative.com/?p=739","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("741","1","2023-02-15 04:22:08","2023-02-15 04:22:08","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						+(827) 123 - 456 - 7891					</p>\n				<h4>\n						Mail Us					\n				</h4>\n									<p>\n						info@evaniayogastudio.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 04:22:08","2023-02-15 04:22:08","","31","https://latitude39creative.com/?p=741","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("745","1","2023-02-15 04:34:47","2023-02-15 04:34:47","<h1>Social Media</h1>\n<h3>How to get more likes and shares</h3>\n<h4>engage audiences with increased Online Presence</h4>\n<h2>Learn About Our Social Media Marketing Strategy</h2>\n<img width=\"380\" height=\"380\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Pic-Intro-Service-social-media-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Pic-Intro-Service-social-media-1.png?w=380&amp;ssl=1 380w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Pic-Intro-Service-social-media-1.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Pic-Intro-Service-social-media-1.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 380px) 100vw, 380px\">\n<h3>What\'s Trending Now</h3>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisla.\n\nMauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam. Nulla euismod a mi eu elentum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet.\n<h3>Don\'t Miss Out</h3>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisla.\n\nMauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam. Nulla euismod a mi eu elentum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet.\n<h4>Company Strengths at a glance</h4>\n<h2>Our Strong Points</h2>\nLorem ipsum dolor sit amet, conse the all ctetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra olla augue. Maecenas consequat, dolor eget pharetra all imperdiet, dolor urna luctus urna, id porta tellus leo.\n\nFacebook\n92%\nInstagram\n89%\nLinkedin\n95%\nYouTube\n98%\n<img width=\"369\" height=\"369\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Bitmap-Copy-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-6.png?w=369&amp;ssl=1 369w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-6.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-6.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 369px) 100vw, 369px\">\n<img width=\"562\" height=\"562\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/pic-copy-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/pic-copy-2.png?w=562&amp;ssl=1 562w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/pic-copy-2.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/pic-copy-2.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 562px) 100vw, 562px\">\n<h3>Tailor-Made Digital Marketing</h3>\n<h2>Customized Social Media Strategy</h2>\nLorem ipsum dolor sit amet, consectetur adiop iscing elit, sed do eiusmod tempor inci didunt ult labore et dolore magna aliqua. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Euismod quis viverra nibh cras pulvinar. In massa tempor nec feugiat nisl pretium.Lorem ipsum dolor sit amet, consectetur adiop iscing elit, sed do eiusmod tempor inci didunt ult labore et dolore magna aliqua. the off ullam or corper dignissim cras tincidunt lobortis feugiat. Euismod quis viverra nibh cras pulvinar. In massa tempor nec feugiat nisl pretium.\n<a href=\"https://library.elementor.com/marketing-digital-agency/category/beyond-news/\" role=\"button\">\nmore at blog\n</a>\n<h3>Bespoke Marketing Plans</h3>\n<h2>We\'d love to share our knowledge and experience</h2>\nMaecenas consequat, dolor eget pharetra the all imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl purus risus, vel vestibulum semytu  commo vitae. Fusce vel arcu quam. anyti Nulla euismod a mi euot elentum.Lorem ipsum dolor sit amet, congt the off tetur adipiscing elit. Mauris iaculis nec justo frwac fermen quisque rhoncus nisi sed suscit curus. Donec porta metus porta.\n<h4>Stay Connected</h4>\nLorem ipsum dolor sittu olrot amet, consectetur adip scing elit. Proin rutrum euis the mod dolor, ultricies aliq luam ekolor.\n<ul>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n</ul>\n<h4>Think Ahead</h4>\nLorem ipsum dolor sittu olrot amet, consectetur adip scing elit. Proin rutrum euis the mod dolor, ultricies aliq luam ekolor.\n<ul>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n 	<li>\n										Lorem ipsum dolor sitrey</li>\n</ul>\n<h3>We Solve Real Problems</h3>\n<h2>what can we do for you?</h2>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bd174aeb-b623-40e5-a75c-6aa845ce06e9\" data-name=\"Layer 1\" width=\"74.7078\" height=\"66\" viewBox=\"0 0 74.7078 66\"><path id=\"b6f1f094-5902-49ca-a766-09584eb9daa6\" data-name=\"Fill-1-Copy-5\" d=\"M53.3653,19.386c-9.8693,32.2855,6.1235,31.8329-7.1389,41.2306A29.1943,29.1943,0,0,1,5.3387,53.4179a29.7533,29.7533,0,0,1,7.1385-41.23C25.74,2.79,63.2345-12.8994,53.3653,19.386\" style=\"fill-rule:evenodd;opacity:0.05\"></path><path d=\"M70.6063,52.798a4.0908,4.0908,0,0,0-3.3287,1.7228l-8.83-4.4155a.9765.9765,0,0,0-.5986-.0752,3.5841,3.5841,0,0,0,.0028-2.0507.9848.9848,0,0,0,.15.0206,1.0107,1.0107,0,0,0,.4468-.1053l9.6412-4.8216a4.061,4.061,0,0,0,2.5169.8869,4.1045,4.1045,0,1,0-3.7731-2.4958l-9.28,4.641a.976.976,0,0,0-.4212.4363,4,4,0,1,0,0,4.9171.9769.9769,0,0,0,.4211.4359l9.0026,4.5016a4.0466,4.0466,0,0,0-.0507.5027,4.1015,4.1015,0,1,0,4.1015-4.1008Zm0-14.99a2.05,2.05,0,1,1-2.05,2.05A2.053,2.053,0,0,1,70.6063,37.8081ZM54,51A2,2,0,1,1,56,49,2.0025,2.0025,0,0,1,54,51Zm16.6067,7.9492a2.0525,2.0525,0,0,1-2.05-2.05c0-.0278.0071-.0536.0082-.0811A.975.975,0,0,0,68.9506,55.7a2.0478,2.0478,0,1,1,1.6557,3.2492Z\" style=\"fill-rule:evenodd\"></path><path d=\"M50.6746,54.8864H32.1465a3.1252,3.1252,0,0,1-3.0877-3.1557V21.3828H70.2321V32.8006a1.029,1.029,0,1,0,2.0576,0V20.132l0-.0022,0-.0022V15.973a5.209,5.209,0,0,0-5.1463-5.2582H32.1465A5.2091,5.2091,0,0,0,27,15.973v4.1543l0,.0025,0,.0026V51.7307a5.2093,5.2093,0,0,0,5.1463,5.259H50.6746a1.0519,1.0519,0,0,0,0-2.1033ZM32.1465,12.8181H67.1434a3.1258,3.1258,0,0,1,3.0887,3.1549v2.9038H29.0588V15.973A3.125,3.125,0,0,1,32.1465,12.8181Z\" style=\"fill-rule:evenodd\"></path><circle cx=\"34\" cy=\"16\" r=\"1\"></circle><path d=\"M37,17a1,1,0,1,0-1-1A1.0006,1.0006,0,0,0,37,17Z\" style=\"fill-rule:evenodd\"></path><circle cx=\"40\" cy=\"16\" r=\"1\"></circle></svg>\n<h3>\n						Social Media</h3>\nLorem ipsum dolor sit orot amet, cons ctetur atrd piing elit.​\n\n<a href=\"https://library.elementor.com/marketing-digital-agency/social-media/\" role=\"button\">\nLearn More\n</a>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"b100d072-5c26-428c-aa94-fe2a7fbab69d\" data-name=\"Layer 1\" width=\"75\" height=\"66\" viewBox=\"0 0 75 66\"><path id=\"e8462590-5a8a-492b-9bee-67fe2f65f983\" data-name=\"Fill-1-Copy-6\" d=\"M53.3653,19.386c-9.8693,32.2855,6.1235,31.8329-7.1389,41.2306A29.1943,29.1943,0,0,1,5.3387,53.4179a29.7533,29.7533,0,0,1,7.1385-41.23C25.74,2.79,63.2345-12.8994,53.3653,19.386\" style=\"fill-rule:evenodd;opacity:0.05\"></path><path d=\"M36.3831,33.079a.97.97,0,0,0-1.0894.2261L32,36.7484l-3.2929-3.4433a.9746.9746,0,0,0-1.0894-.2261A1.0466,1.0466,0,0,0,27,34.0443v20.91A1.0224,1.0224,0,0,0,28,56h8a1.0224,1.0224,0,0,0,1-1.0454v-20.91A1.0459,1.0459,0,0,0,36.3831,33.079Zm-1.3823,20.83H29V36.5682l2.2929,2.3979a.9709.9709,0,0,0,1.415,0l2.2929-2.3979Z\" style=\"fill-rule:evenodd\"></path><path d=\"M45.7079,24.3128a.9566.9566,0,0,0-1.415,0l-4,4.2664A1.1022,1.1022,0,0,0,40,29.3334v25.6A1.0339,1.0339,0,0,0,41,56h8a1.0339,1.0339,0,0,0,1-1.0666v-25.6a1.099,1.099,0,0,0-.2929-.7542Zm2.2929,29.554H42V29.7752l3-3.2006,3.0008,3.2006Z\" style=\"fill-rule:evenodd\"></path><path d=\"M57.7079,20.3013a.9814.9814,0,0,0-1.415,0l-4,4.1182A1.0435,1.0435,0,0,0,52,25.1473V53.9706A1.0139,1.0139,0,0,0,53,55h8a1.0139,1.0139,0,0,0,1-1.0294V25.1473a1.04,1.04,0,0,0-.2929-.7278Zm2.2929,32.64H54V25.5737l3-3.0888,3.0008,3.0888Z\" style=\"fill-rule:evenodd\"></path><path d=\"M72.7071,16.3083A.9729.9729,0,0,0,72.0008,16H70a.9758.9758,0,0,0-.7071.3083l-4,4.21A1.08,1.08,0,0,0,65,21.2628V54.9474A1.0262,1.0262,0,0,0,66,56h8a1.0262,1.0262,0,0,0,1-1.0526v-35.79a1.0765,1.0765,0,0,0-.2929-.7442Zm.2937,37.5866H67V21.6988l3.4142-3.5937h1.1724l1.4142,1.4886Z\" style=\"fill-rule:evenodd\"></path><path d=\"M74,5H68a1,1,0,0,0-.7071,1.7069l2.3581,2.3579a1,1,0,0,0-.3974.2406l-8.4859,8.6538-3.3692-3.4359a1.0093,1.0093,0,0,0-1.4478,0l-7.462,7.61L45.1194,18.697a1.0091,1.0091,0,0,0-1.4478,0L32.1161,30.481l-3.3692-3.4359a1.0074,1.0074,0,0,0-1.4462,0,1.0557,1.0557,0,0,0,0,1.4757l4.0919,4.1736a1.01,1.01,0,0,0,1.4478,0L44.3951,20.91l3.37,3.4359a1.0083,1.0083,0,0,0,1.447,0l7.462-7.61,3.37,3.4358a1.01,1.01,0,0,0,1.447,0l9.2094-9.3915a1.0231,1.0231,0,0,0,.24-.4266l2.3521,2.352A1.0018,1.0018,0,0,0,74,13a1.0188,1.0188,0,0,0,.3831-.0766A1.0021,1.0021,0,0,0,75,11.9993V6A.999.999,0,0,0,74,5ZM73,9.5853,70.4141,7H73Z\" style=\"fill-rule:evenodd\"></path></svg>\n<h3>\n						SEO</h3>\nLorem ipsum dolor sit orot amet, cons ctetur atrd piing elit.​\n\n<a href=\"https://library.elementor.com/marketing-digital-agency/social-media/\" role=\"button\">\nLearn More\n</a>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"b6dcefca-0c8c-418c-b77f-efb4dc1647b0\" data-name=\"Layer 1\" width=\"75.3081\" height=\"66\" viewBox=\"0 0 75.3081 66\"><path id=\"b44b666d-68b2-4ca8-9bee-286f74bdea55\" data-name=\"Fill-1-Copy-9\" d=\"M53.3653,19.386c-9.8693,32.2855,6.1235,31.8329-7.1389,41.2306A29.1943,29.1943,0,0,1,5.3387,53.4179a29.7533,29.7533,0,0,1,7.1385-41.23C25.74,2.79,63.2345-12.8994,53.3653,19.386\" style=\"fill-rule:evenodd;opacity:0.05\"></path><path d=\"M36.1794,46.4411a1.0435,1.0435,0,0,0,.4161-2.0025,15.7286,15.7286,0,1,1,15.0229-1.3817,1.0409,1.0409,0,0,0-.2838,1.45,1.0538,1.0538,0,0,0,1.4567.2825,17.844,17.844,0,1,0-17.028,1.5658A1.0509,1.0509,0,0,0,36.1794,46.4411Z\" style=\"fill-rule:evenodd\"></path><path d=\"M74.29,28.3412H64.1086a1.0177,1.0177,0,0,0-.72,1.7379l4.2843,4.2844L53.2659,49.153l-7.5827-7.7842a1.0208,1.0208,0,0,0-1.4712,0L31.7346,54.178a1.0879,1.0879,0,0,0,0,1.51,1.0217,1.0217,0,0,0,1.4711,0L44.9472,43.6321l7.5843,7.7851a1.0188,1.0188,0,0,0,1.4695,0L69.1624,35.8528,73.57,40.2606a1.0206,1.0206,0,0,0,.72.2981.9981.9981,0,0,0,.3892-.078,1.0179,1.0179,0,0,0,.6289-.94V29.3593A1.0175,1.0175,0,0,0,74.29,28.3412Zm-1.018,8.7416-6.7056-6.7055H73.272Z\" style=\"fill-rule:evenodd\"></path><path d=\"M43,39a1.0284,1.0284,0,0,0,1-1.0555V36.9131a4.5186,4.5186,0,0,0,4-4.1977c0-2.0089-1.311-3.3611-4-4.0707V24.2758A2.4323,2.4323,0,0,1,46.0043,26.17a1.0361,1.0361,0,0,0,1.08.9765,1.0525,1.0525,0,0,0,.9121-1.1586A4.5182,4.5182,0,0,0,44,22.084V21.0563a1.0015,1.0015,0,1,0-2,0v1.0306a4.5188,4.5188,0,0,0-4,4.1986c0,2.0072,1.3114,3.36,4,4.07V34.724a2.4342,2.4342,0,0,1-2.0043-1.8949,1.0323,1.0323,0,0,0-1.0788-.9773A1.052,1.052,0,0,0,38.004,33.01,4.52,4.52,0,0,0,42,36.916v1.0285A1.0284,1.0284,0,0,0,43,39Zm3-6.2846c0,.91-.85,1.7022-2,2.0051V30.8419C45.3506,31.2539,46,31.8578,46,32.7154Zm-6-6.43c0-.911.85-1.703,1.9995-2.0059v3.8775C40.65,27.7447,40.0005,27.1412,40.0005,26.2855Z\" style=\"fill-rule:evenodd\"></path></svg>\n<h3>\n						PPC</h3>\nLorem ipsum dolor sit orot amet, cons ctetur atrd piing elit.​\n\n<a href=\"https://library.elementor.com/marketing-digital-agency/social-media/\" role=\"button\">\nLearn More\n</a>\n<a href=\"https://library.elementor.com/marketing-digital-agency/services/\" role=\"button\">\nMore Services\n</a>\n<h4>Want To Boost Your Business Today?</h4>\n<h2>drop us a line and keep in touch</h2>\n<a href=\"https://library.elementor.com/marketing-digital-agency/contact-us/\" role=\"button\">\nContact Us\n</a>\n<img width=\"539\" height=\"539\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Bitmap-Copy-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-3.png?w=539&amp;ssl=1 539w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-3.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Bitmap-Copy-3.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 539px) 100vw, 539px\">","Blog","","inherit","closed","closed","","315-revision-v1","","","2023-02-15 04:34:47","2023-02-15 04:34:47","","315","https://latitude39creative.com/?p=745","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("746","1","2023-02-15 04:34:48","2023-02-15 04:34:48","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						+(827) 123 - 456 - 7891					</p>\n				<h4>\n						Mail Us					\n				</h4>\n									<p>\n						info@evaniayogastudio.com					</p>","Blog","","inherit","closed","closed","","315-revision-v1","","","2023-02-15 04:34:48","2023-02-15 04:34:48","","315","https://latitude39creative.com/?p=746","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("750","1","2023-02-15 04:36:47","2023-02-15 04:36:47","<h1>Latest Blog</h1>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n\n<label> Your name\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\"> </label>\n\n<label> Your email\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\"> </label>\n\n<label> Subject\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\"> </label>\n\n<label> Your message (optional)\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n\n<input type=\"submit\" value=\"Submit\">\n\n</form>\n<h3>Get In Touch.</h3>\n<h4>\n						Office Address</h4>\nDenver, Colorado\n<h4>\n						Call Us</h4>\n+(827) 123 - 456 - 7891\n<h4>\n						Mail Us</h4>\ninfo@evaniayogastudio.com","Blog","","inherit","closed","closed","","315-revision-v1","","","2023-02-15 04:36:47","2023-02-15 04:36:47","","315","https://latitude39creative.com/?p=750","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("752","1","2023-02-15 15:00:55","2023-02-15 15:00:55","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:Ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:Ben@latitude39creative.com\" >\n						Mail Us					</a>\n				</h4>\n									<p>\n						Ben@latitude39creative.com					</p>","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-15 15:00:55","2023-02-15 15:00:55","","649","https://latitude39creative.com/?p=752","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("753","1","2023-02-15 15:01:06","2023-02-15 15:01:06","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n								</a>\n				<h4>\n					<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n						Mail Us					</a>\n				</h4>\n									<p>\n						Ben@latitude39creative.com					</p>","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-15 15:01:06","2023-02-15 15:01:06","","649","https://latitude39creative.com/?p=753","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("754","1","2023-02-15 15:02:06","2023-02-15 15:02:06","<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n								</a>\n				<h4>\n					<a href=\"mailto:Ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n						Email Us					</a>\n				</h4>\n									<p>\n						Ben@latitude39creative.com					</p>","Contact us","","inherit","closed","closed","","649-revision-v1","","","2023-02-15 15:02:06","2023-02-15 15:02:06","","649","https://latitude39creative.com/?p=754","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("802","1","2023-02-15 16:01:37","2023-02-15 16:01:37","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2023-02-15 16:01:37","2023-02-15 16:01:37","","287","https://latitude39creative.com/?p=802","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("803","1","2023-02-15 16:01:38","2023-02-15 16:01:38","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2023-02-15 16:01:38","2023-02-15 16:01:38","","287","https://latitude39creative.com/?p=803","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("813","1","2023-02-15 16:11:55","2023-02-15 16:11:55","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 16:11:55","2023-02-15 16:11:55","","31","https://latitude39creative.com/?p=813","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("814","1","2023-02-15 16:12:04","2023-02-15 16:12:04","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 16:12:04","2023-02-15 16:12:04","","31","https://latitude39creative.com/?p=814","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("815","1","2023-02-15 16:12:34","2023-02-15 16:12:34","<h1>Latest Blog</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 16:12:34","2023-02-15 16:12:34","","31","https://latitude39creative.com/?p=815","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("832","1","2023-02-15 17:38:18","2023-02-15 17:38:18","","latitude61n","","inherit","open","closed","","latitude61n","","","2023-02-15 17:38:18","2023-02-15 17:38:18","","103","https://latitude39creative.com/wp-content/uploads/2023/02/latitude61n.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("839","1","2023-02-15 17:46:41","2023-02-15 17:46:41","","FitCFO","","inherit","open","closed","","fitcfo","","","2023-02-15 17:46:41","2023-02-15 17:46:41","","103","https://latitude39creative.com/wp-content/uploads/2023/02/FitCFO.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("847","1","2023-02-15 18:09:06","2023-02-15 18:09:06","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-15 18:09:06","2023-02-15 18:09:06","","601","https://latitude39creative.com/?p=847","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("856","1","2023-02-15 18:54:17","2023-02-15 18:54:17","<h2>Blog</h2>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 18:54:17","2023-02-15 18:54:17","","31","https://latitude39creative.com/?p=856","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("857","1","2023-02-15 18:55:10","2023-02-15 18:55:10","<h2>Blog</h2>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 18:55:10","2023-02-15 18:55:10","","31","https://latitude39creative.com/?p=857","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("858","1","2023-02-15 18:55:34","2023-02-15 18:55:34","<h2>Blog</h2>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Posts Archive","","inherit","closed","closed","","31-revision-v1","","","2023-02-15 18:55:34","2023-02-15 18:55:34","","31","https://latitude39creative.com/?p=858","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("859","1","2023-02-15 18:56:14","2023-02-15 18:56:14","","Elementor Header #601","","inherit","closed","closed","","601-revision-v1","","","2023-02-15 18:56:14","2023-02-15 18:56:14","","601","https://latitude39creative.com/?p=859","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("863","1","2023-04-16 14:39:50","2023-04-16 14:39:50","","Glass wallet logo","","inherit","open","closed","","glass-wallet-logo","","","2023-04-16 14:39:50","2023-04-16 14:39:50","","103","https://latitude39creative.com/wp-content/uploads/2023/04/Glass-wallet-logo.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("864","1","2023-04-16 14:42:27","2023-04-16 14:42:27","","accounting-cornerstone-1-copy","","inherit","open","closed","","accounting-cornerstone-1-copy","","","2023-04-16 14:42:27","2023-04-16 14:42:27","","103","https://latitude39creative.com/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts_backup VALUES("865","1","2023-04-16 14:49:06","2023-04-16 14:49:06","","GW screenshot","","inherit","open","closed","","gw-screenshot","","","2023-04-16 14:49:06","2023-04-16 14:49:06","","103","https://latitude39creative.com/wp-content/uploads/2023/04/GW-screenshot.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("885","1","2023-06-01 23:58:21","2023-06-01 23:58:21","","Latitude-Logo","","inherit","open","closed","","latitude-logo-2","","","2023-06-01 23:58:21","2023-06-01 23:58:21","","169","https://latitude39creative.com/wp-content/uploads/2023/06/Latitude-Logo.webp","0","attachment","image/webp","0");
INSERT INTO 7ja_posts_backup VALUES("888","1","2023-06-02 00:04:52","2023-06-02 00:04:52","","Latitude-Logo-02-1","","inherit","open","closed","","latitude-logo-02-1","","","2023-06-02 00:04:52","2023-06-02 00:04:52","","169","https://latitude39creative.com/wp-content/uploads/2023/06/Latitude-Logo-02-1.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("906","1","2023-06-23 22:26:52","2023-06-23 22:26:52","","Elementor-Logo-Full-Red","","inherit","open","closed","","elementor-logo-full-red","","","2023-06-23 22:26:52","2023-06-23 22:26:52","","169","https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("915","1","2023-08-01 21:33:59","2023-08-01 21:33:59","<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rhoncus nisi sed suscipit cursus. Donec porta metus porta, ullamcorper libero ut, viverra augue. Maecenas consequat, dolor eget pharetra imperdiet, dolor urna luctus urna, id porta tellus leo nec nisl. Mauris et volutpat sapien, facilisis eleifend felis. Phasellus rutrum purus risus, vel vestibulum sem commodo vitae. Fusce vel arcu quam.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Nulla euismod a mi eu elementum. Mauris iaculis nec justo ac fermentum. Quisque quis enim sit amet velit gravida tempor et quis mauris. Vestibulum fermentum est nulla, a accumsan libero ultrices nec.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Etiam erat quam, pellentesque in maximus vitae, sollicitudin sed dui. Fusce blandit turpis nec aliquam pharetra. Suspendisse imperdiet molestie imperdiet. Pellentesque imperdiet magna tincidunt, ultricies tellus at, aliquet sapien.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p><strong>Class aptent taciti socios<br></strong>Lkad litora torquent per conubia nostra, per inceptos himenaeos. Praesent ut libero a ipsum aliquam accumsan. Maecenas ut arcu in justo euismod auctor. Donec facilisis efficitur ante a suscipit. Mauris maximus eu odio ac euismod. Maecenas faucibus turpis sed posuere volutpat. Sed tincidunt luctus massa ac aliquam. Integer tincidunt purus et diam dapibus, a rhoncus magna congue. Ut ut turpis suscipit massa mollis gravida. Proin ut dui in libero aliquet semper.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p><strong>Morbi a felis sapien</strong><br>bibendum hendrerit elit, vitae posuere sem pharetra nec. Morbi suscipit suscipit luctus. Morbi posuere augue eu tristique mollis. Suspendisse fringilla venenatis placerat. Nunc id sapien pretium urna bibendum consectetur. Quisque blandit metus arcu, id ornare magna molestie nec. Proin malesuada a lacus nec mollis. Aliquam pellentesque purus ac nibh pharetra gravida.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Vestibulum quis elit rhoncus, ultricies dolor at, gravida orci. Curabitur ut luctus felis. Sed suscipit ut velit sit amet semper. Donec lorem sem, feugiat eget laoreet in, semper non elit. Ut accumsan lacus eu tellus venenatis tincidunt. Suspendisse at mauris.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Nulla vel ante eu leo rhoncus condimentum vitae et elit. Etiam vitae elementum orci. Aliquam quam turpis, malesuada non ultrices ac, mollis ut dui. Donec eu nisl ut sapien feugiat accumsan ut eget ligula. Phasellus pharetra gravida est id pellentesque. Aliquam erat volutpat. Phasellus venenatis ipsum ac metus sagittis bibendum.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>In sed rutrum magna. Nullam euismod metus ac sagittis viverra. Vivamus posuere vehicula risus a eleifend. Sed vel metus lacus. In hac habitasse platea dictumst. Morbi lacinia fermentum mi eget auctor. Aenean vehicula odio justo, ut gravida ex porttitor eu. Fusce sed blandit mauris, in tempus nisl. Sed rutrum elit non ante rhoncus, vel luctus neque pretium.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p><strong>Cras nec magna nec neque pulvinar commodo.</strong><br>Duis libero mauris, elementum et dui vitae, malesuada egestas nisi. Maecenas dignissim consequat tellus quis dignissim. Ut ac convallis tellus, semper sodales erat. Nam ac nunc blandit, volutpat nunc a, accumsan velit. Praesent tincidunt purus iaculis diam posuere, at condimentum urna imperdiet. Nam sit amet pulvinar massa, id hendrerit ante. Vestibulum tellus tellus, eleifend nec placerat tempus, tincidunt at orci. Morbi mollis, justo aliquam venenatis euismod, diam ante sollicitudin lacus, ac fermentum sapien velit quis magna. Integer rutrum lacinia ullamcorper. Vivamus sit amet bibendum augue, non luctus diam. Cras nisi est, ultricies eget ipsum ut, viverra facilisis tortor.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>","What\'s in a Brand?","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","75-revision-v1","","","2023-08-01 21:33:59","2023-08-01 21:33:59","","75","https://latitude39creative.com/?p=915","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("916","1","2023-08-01 21:33:59","2023-08-01 21:33:59","<p><!-- wp:paragraph --></p>\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.</p>\n<p>1.  Recognition and Recall:</p>\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.</p>\n<p>2. Building Trust and Credibility:</p>\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.</p>\n<p>3.  Customer Loyalty:</p>\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.</p>\n<p>4. <strong>Competitive Advantage:</strong></p>\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.</p>\n<p>5.  <strong>Employee Morale and Pride:</strong></p>\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.</p>\n<p>6. <strong>Brand Extension and Diversification:</strong></p>\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.</p>\n<p>7. <strong>Price Premium:</strong></p>\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.</p>\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.</p>\n<p><!-- /wp:paragraph --></p>","What\'s in a Brand?","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","75-revision-v1","","","2023-08-01 21:33:59","2023-08-01 21:33:59","","75","https://latitude39creative.com/?p=916","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("917","1","2023-08-01 21:36:27","2023-08-01 21:36:27","","kristian-egelund-wwqRpSNBPq4-unsplash","","inherit","open","closed","","kristian-egelund-wwqrpsnbpq4-unsplash","","","2023-08-01 21:36:27","2023-08-01 21:36:27","","75","https://latitude39creative.com/wp-content/uploads/2022/11/kristian-egelund-wwqRpSNBPq4-unsplash.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("918","1","2023-08-01 21:37:04","2023-08-01 21:37:04","<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.</p>\n<p>1.  Recognition and Recall:</p>\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.</p>\n<p>2. Building Trust and Credibility:</p>\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.</p>\n<p>3.  Customer Loyalty:</p>\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.</p>\n<p>4. <strong>Competitive Advantage:</strong></p>\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.</p>\n<p>5.  <strong>Employee Morale and Pride:</strong></p>\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.</p>\n<p>6. <strong>Brand Extension and Diversification:</strong></p>\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.</p>\n<p>7. <strong>Price Premium:</strong></p>\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.</p>\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>","What\'s in a Brand?","Proin gravida nisi turpis, posuere elementum leo laoreet Curabitur accumsan maximus.","inherit","closed","closed","","75-revision-v1","","","2023-08-01 21:37:04","2023-08-01 21:37:04","","75","https://latitude39creative.com/?p=918","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("920","1","2023-08-01 21:44:14","2023-08-01 21:44:14","<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company\'s disposal for achieving this differentiation is its brand. A company\'s brand is not just a logo or a catchy slogan; it is the embodiment of its values, personality, and promises to its customers. In this blog post, we will explore the importance of a company brand and how it can significantly impact a business\'s success.</p>\n<p>1.  Recognition and Recall:</p>\n<p>A strong brand creates an instant connection with consumers. It helps establish recognition and recall, making it easier for customers to identify and remember your company in a sea of competitors. A well-designed logo, consistent color palette, and compelling brand message play a crucial role in imprinting your business in the minds of potential customers.</p>\n<p>2. Building Trust and Credibility:</p>\n<p>A well-crafted brand fosters trust and credibility. When a company presents itself with a professional and consistent brand image, it signals to consumers that the business is reliable, capable, and committed to delivering quality products or services. Customers are more likely to choose a brand they trust over an unknown or unestablished competitor.</p>\n<p>3.  Customer Loyalty:</p>\n<p>A strong brand cultivates loyalty among customers. Loyal customers not only continue to purchase from a brand but also become brand advocates, spreading positive word-of-mouth and bringing in new customers through referrals. Loyal customers are more forgiving of occasional missteps and are likely to stick with a brand even in challenging times.</p>\n<p>4. <strong>Competitive Advantage:</strong></p>\n<p>In a saturated market, a unique brand identity can provide a competitive advantage. A well-defined brand sets a company apart by highlighting its unique selling points and differentiators. It allows businesses to occupy a distinct position in the minds of consumers, making it difficult for competitors to replicate the same emotional connection.</p>\n<p>5.  <strong>Employee Morale and Pride:</strong></p>\n<p>A powerful brand not only resonates with customers but also inspires employees. When employees are proud of the brand they represent, they become more engaged, motivated, and enthusiastic ambassadors for the company. A strong brand culture can attract and retain top talent, fostering a positive work environment.</p>\n<p>6. <strong>Brand Extension and Diversification:</strong></p>\n<p>A strong brand opens doors to opportunities for brand extension and diversification. Once a company has built a solid reputation in its primary market, it can leverage its brand equity to introduce new products or services with a higher chance of success. Customers are more likely to trust new offerings from a brand they already know and love.</p>\n<p>7. <strong>Price Premium:</strong></p>\n<p>A brand that has successfully positioned itself as a premium provider can command higher prices for its products or services. Customers are often willing to pay more for a brand they perceive as offering superior quality or value. This premium pricing can directly impact a company\'s bottom line.</p>\n<p>In conclusion, a company\'s brand is not just a superficial aspect of its identity; it is a strategic asset that can significantly impact its success. Building a strong and consistent brand requires time, effort, and a deep understanding of the company\'s values and target audience. However, the investment is well worth it, as a powerful brand can create lasting connections with customers, set a business apart from competitors, and propel it toward long-term success.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>","What\'s in a Brand?","In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever.","inherit","closed","closed","","75-revision-v1","","","2023-08-01 21:44:14","2023-08-01 21:44:14","","75","https://latitude39creative.com/?p=920","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("921","1","2023-08-01 21:52:06","2023-08-01 21:52:06","","Screenshot 2023-08-01 3.49.41 PM - Display 2 (1)","","inherit","open","closed","","screenshot-2023-08-01-3-49-41-pm-display-2-1","","","2023-08-01 21:52:06","2023-08-01 21:52:06","","103","https://latitude39creative.com/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("925","1","2023-08-01 21:56:40","2023-08-01 21:56:40","","Screenshot 2023-08-01 3.55.16 PM - Display 2","","inherit","open","closed","","screenshot-2023-08-01-3-55-16-pm-display-2","","","2023-08-01 21:56:40","2023-08-01 21:56:40","","103","https://latitude39creative.com/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("947","1","2023-09-11 16:39:14","2023-09-11 16:39:14","","Screenshot 2023-09-11 10.34.18 AM - Display 2","","inherit","open","closed","","screenshot-2023-09-11-10-34-18-am-display-2","","","2023-09-11 16:39:14","2023-09-11 16:39:14","","169","https://latitude39creative.com/wp-content/uploads/2023/09/Screenshot-2023-09-11-10.34.18-AM-Display-2.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("949","1","2023-09-18 21:40:13","2023-09-18 21:40:13","","Social image","","inherit","open","closed","","social-image","","","2023-09-18 21:40:13","2023-09-18 21:40:13","","169","https://latitude39creative.com/wp-content/uploads/2023/09/Social-image.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("950","1","2023-09-18 21:42:31","2023-09-18 21:42:31","{\n    \"site_icon\": {\n        \"value\": 949,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-09-18 21:42:31\"\n    }\n}","","","publish","closed","closed","","7d868b05-8842-45a8-8213-4ad79e521524","","","2023-09-18 21:42:31","2023-09-18 21:42:31","","0","https://latitude39creative.com/7d868b05-8842-45a8-8213-4ad79e521524/","0","customize_changeset","","0");
INSERT INTO 7ja_posts_backup VALUES("952","1","2023-09-18 21:48:15","2023-09-18 21:48:15","","Favicon 512","","inherit","open","closed","","favicon-512","","","2023-09-18 21:48:15","2023-09-18 21:48:15","","0","https://latitude39creative.com/wp-content/uploads/2023/09/Favicon-512.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("953","1","2023-09-18 21:48:19","2023-09-18 21:48:19","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/cropped-Favicon-512.png","cropped-Favicon-512.png","","inherit","open","closed","","cropped-favicon-512-png","","","2023-09-18 21:48:19","2023-09-18 21:48:19","","0","https://latitude39creative.com/wp-content/uploads/2023/09/cropped-Favicon-512.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("954","1","2023-09-18 21:48:36","2023-09-18 21:48:36","","Untitled design","","inherit","open","closed","","untitled-design","","","2023-09-18 21:48:36","2023-09-18 21:48:36","","0","https://latitude39creative.com/wp-content/uploads/2023/09/Untitled-design.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("955","1","2023-09-18 21:48:41","2023-09-18 21:48:41","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/cropped-Untitled-design.png","cropped-Untitled-design.png","","inherit","open","closed","","cropped-untitled-design-png","","","2023-09-18 21:48:41","2023-09-18 21:48:41","","0","https://latitude39creative.com/wp-content/uploads/2023/09/cropped-Untitled-design.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("956","1","2023-09-18 21:49:06","2023-09-18 21:49:06","{\n    \"site_icon\": {\n        \"value\": 953,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-09-18 21:49:06\"\n    }\n}","","","publish","closed","closed","","6bb50087-c04d-4cb0-be42-ad9fe21149f6","","","2023-09-18 21:49:06","2023-09-18 21:49:06","","0","https://latitude39creative.com/6bb50087-c04d-4cb0-be42-ad9fe21149f6/","0","customize_changeset","","0");
INSERT INTO 7ja_posts_backup VALUES("958","1","2023-09-18 21:54:47","2023-09-18 21:54:47","{\n    \"site_icon\": {\n        \"value\": 961,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-09-18 21:54:47\"\n    }\n}","","","publish","closed","closed","","9399d96c-c717-4e6e-9da3-418cdd4aecee","","","2023-09-18 21:54:47","2023-09-18 21:54:47","","0","https://latitude39creative.com/?p=958","0","customize_changeset","","0");
INSERT INTO 7ja_posts_backup VALUES("960","1","2023-09-18 21:54:25","2023-09-18 21:54:25","","Untitled design (1)","","inherit","open","closed","","untitled-design-1","","","2023-09-18 21:54:25","2023-09-18 21:54:25","","0","https://latitude39creative.com/wp-content/uploads/2023/09/Untitled-design-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("961","1","2023-09-18 21:54:32","2023-09-18 21:54:32","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/09/cropped-Untitled-design-1.png","cropped-Untitled-design-1.png","","inherit","open","closed","","cropped-untitled-design-1-png","","","2023-09-18 21:54:32","2023-09-18 21:54:32","","0","https://latitude39creative.com/wp-content/uploads/2023/09/cropped-Untitled-design-1.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("970","1","2023-11-14 00:06:12","2023-11-14 00:06:12","<h2>About</h2>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5><p> </p>		\n															<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Projects					</h3>\n															<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Some of Our Clients.</h3>		\n															<img width=\"460\" height=\"80\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/Markpianoman.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/Markpianoman.png?w=460&amp;ssl=1 460w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/Markpianoman.png?resize=300%2C52&amp;ssl=1 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />															\n															<img width=\"642\" height=\"286\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/blueprintfinlogo.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/blueprintfinlogo.webp?w=642&amp;ssl=1 642w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/blueprintfinlogo.webp?resize=300%2C134&amp;ssl=1 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />															\n															<img width=\"800\" height=\"450\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/BFD-main-logo.webp?w=1024&amp;ssl=1 1024w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/BFD-main-logo.webp?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/BFD-main-logo.webp?resize=768%2C432&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"797\" height=\"172\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/PivotAll_Web-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/PivotAll_Web-Logo.png?w=797&amp;ssl=1 797w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/PivotAll_Web-Logo.png?resize=300%2C65&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/PivotAll_Web-Logo.png?resize=768%2C166&amp;ssl=1 768w\" sizes=\"(max-width: 797px) 100vw, 797px\" />															\n															<img width=\"600\" height=\"110\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/GW-logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/GW-logo.png?w=600&amp;ssl=1 600w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/GW-logo.png?resize=300%2C55&amp;ssl=1 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:06:12","2023-11-14 00:06:12","","147","https://latitude39creative.com/?p=970","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("971","1","2023-11-14 00:06:12","2023-11-14 00:06:12","<h2>About</h2>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5><p> </p>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:06:12","2023-11-14 00:06:12","","147","https://latitude39creative.com/?p=971","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("972","1","2023-11-14 00:09:02","2023-11-14 00:09:02","<h2>About</h2>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5><p> </p>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:09:02","2023-11-14 00:09:02","","147","https://latitude39creative.com/?p=972","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("973","1","2023-11-14 00:09:04","2023-11-14 00:09:04","<h2>About</h2>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5><p> </p>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:09:04","2023-11-14 00:09:04","","147","https://latitude39creative.com/?p=973","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("974","1","2023-11-14 00:09:04","2023-11-14 00:09:04","<h2>About</h2>		\n															<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />															\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful.</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get, the more real your business will become.</h5><h5>This will help us create a step-by-step plan that will make that future an actual reality.</h5>		\n			<h3>Who We Are.</h3><h5>\n						Meet Our Expert Web Designers\n					</h5>		\n															<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />															\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n															<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand & Everything Design</h6>		\n			<h3>Let\'sTalk.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","About","","inherit","closed","closed","","147-revision-v1","","","2023-11-14 00:09:04","2023-11-14 00:09:04","","147","https://latitude39creative.com/?p=974","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("976","1","2023-11-14 00:48:11","2023-11-14 00:48:11","<h1>Latest Blog</h1>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n\n<label> Your name\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\"> </label>\n\n<label> Your email\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\"> </label>\n\n<label> Subject\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\"> </label>\n\n<label> Your message (optional)\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n\n<input type=\"submit\" value=\"Submit\">\n\n</form>\n<h3>Get In Touch.</h3>\n<h4>\n						Office Address</h4>\nDenver, Colorado\n<h4>\n						Call Us</h4>\n+(827) 123 - 456 - 7891\n<h4>\n						Mail Us</h4>\ninfo@evaniayogastudio.com","Blog","Website ideas and creative inspiration","inherit","closed","closed","","315-revision-v1","","","2023-11-14 00:48:11","2023-11-14 00:48:11","","315","https://latitude39creative.com/?p=976","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("978","1","2023-11-14 01:15:14","2023-11-14 01:15:14","","nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash","","inherit","open","closed","","nisonco-pr-and-seo-yirdur6hivq-unsplash","","","2023-11-14 01:15:14","2023-11-14 01:15:14","","63","https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash.jpg","0","attachment","image/jpeg","0");
INSERT INTO 7ja_posts_backup VALUES("979","1","2023-11-14 01:17:31","2023-11-14 01:17:31","\n\n\n\n\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is SEO?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO, or Search Engine Optimization, is a set of practices aimed at improving a website\'s visibility and ranking in search engine results pages (SERPs). The primary goal of SEO is to increase organic (non-paid) traffic to a website by optimizing various elements, both on the website itself (on-page SEO) and outside the website (off-page SEO).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">Here are some key aspects of SEO:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Keyword Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Identifying and using relevant keywords in the content, meta tags, and other elements to match user search queries.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Content Quality:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating high-quality, valuable, and relevant content that satisfies user intent and provides useful information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>On-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing elements on the website, including title tags, meta descriptions, header tags, URL structure, and internal linking.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Off-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Building a reputable online presence through activities such as link building, social media engagement, and influencer outreach.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Technical SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensuring the website is technically sound and accessible to search engines. This includes optimizing page speed, implementing schema markup, and having a mobile-friendly design.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>User Experience (UX):</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating a positive user experience to encourage visitors to stay on the site, engage with content, and reduce bounce rates.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Local SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing a website to appear in local search results, is particularly important for businesses serving a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Analytics and Monitoring:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Using tools like Google Analytics and Google Search Console to track website performance, monitor traffic, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is dynamic and evolves as search engine algorithms change. It requires ongoing efforts to adapt to these changes, stay updated with best practices, and maintain or improve search rankings. While paid advertising can generate quick results, SEO focuses on long-term, sustainable strategies to increase a website\'s visibility and attract organic traffic. That\'s where <a href=\"http://Latitude39creative.com\">Latitude39creative</a> comes in.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>How Does SEO Work?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO works through a combination of on-page, off-page, and technical strategies aimed at optimizing a website to improve its visibility and ranking on search engine results pages (SERPs). Here\'s a breakdown of how SEO works:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">1. <strong>Keyword Research:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO starts with identifying relevant keywords related to your content, products, or services. This involves understanding what terms your target audience is likely to use when searching for information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">2. <strong>On-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Content Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create high-quality, relevant, and engaging content that incorporates the identified keywords naturally.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\">Use header tags, meta titles, and meta descriptions to provide structure and information to search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>URL Structure:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Develop SEO-friendly URLs that include keywords and provide a clear structure for both users and search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Internal Linking:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Link relevant pages within your website to improve navigation and distribute link equity.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Mobile Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website is responsive and provides a good user experience on mobile devices.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">3. <strong>Off-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Link Building:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Acquire high-quality backlinks from reputable websites. Quality and relevance are crucial in link building.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Social Signals:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Maintain an active presence on social media platforms, as social signals can indirectly impact search rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Online Reputation Management:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Encourage positive online reviews and manage your online reputation.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">4. <strong>Technical SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Page Speed Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website\'s loading speed to improve user experience and meet search engine standards.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>XML Sitemaps:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create and submit XML sitemaps to help search engines understand the structure of your website.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>SSL Certificates:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website has an SSL certificate for a secure connection.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Schema Markup:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Implement schema markup to provide search engines with more information about your content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">5. <strong>User Experience (UX):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create a positive user experience by making your website easy to navigate, ensuring fast load times, and delivering valuable content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">6. <strong>Analytics and Monitoring:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Use tools like Google Analytics and Google Search Console to monitor website performance, track user behavior, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">7. <strong>Content Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Regularly update and add new content to keep your website fresh and relevant.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">8. <strong>Algorithm Changes and Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Stay informed about changes in search engine algorithms and adjust your strategy accordingly.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">9. <strong>Local SEO (if applicable):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website for local search if you have a physical presence or serve a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">10. <strong>Continuous Optimization:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO is an ongoing process. Regularly audit your website, analyze performance data, and adapt your strategy based on results and industry trends.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">By implementing these strategies, SEO aims to provide the best possible answer to a user\'s search, making your website more visible and relevant in search engine results. Keep in mind that SEO is a long-term strategy, and results may take time to become evident.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Does SEO REALLY matter?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is crucial for several reasons, and its importance has grown significantly as the internet has become an integral part of people\'s lives. Here are key reasons why SEO is important:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Increased Visibility and Traffic:</strong></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO helps improve a website\'s visibility in search engine results. When your site ranks higher, it\'s more likely to be seen by users, resulting in increased organic traffic.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     2. <strong>Credibility and Trust:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Websites that appear at the top of search results are often perceived as more credible and trustworthy by users. Establishing a strong online presence through SEO contributes to building trust with your audience.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     3. <strong>Better User Experience:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO isn\'t just about search engines; it\'s also about enhancing the user experience. By optimizing for both search engines and users, you create a more seamless, intuitive, and enjoyable experience for visitors.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     4. <strong>Cost-Effective Marketing:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Compared to paid advertising, SEO is a cost-effective way to attract organic traffic. While it requires time and effort, the long-term benefits often outweigh the costs associated with other marketing channels.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     5. <strong>Higher Conversion Rates:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Users who find your website through organic search are often actively looking for information, products, or services. This targeted traffic is more likely to convert into leads or customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     6. <strong>Adaptation to Changing Trends:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO encourages staying updated with industry trends and changes in search engine algorithms. This adaptability is crucial for maintaining and improving search rankings over time.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     7. <strong>Local Business Visibility:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">For local businesses, local SEO is essential for appearing in local search results. This is particularly important for attracting nearby customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     8. <strong>Insights into Customer Behavior:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO tools and analytics provide valuable data about user behavior, preferences, and the effectiveness of your strategies. This information can inform decision-making and future optimization efforts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     9. <strong>Competitive Advantage:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">If your competitors are investing in SEO and you\'re not, you risk losing potential customers to them. Conversely, effective SEO can help you outperform competitors in search engine rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     10. <strong>Global Reach:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO enables businesses to reach a global audience. Even small businesses can compete on a larger scale by optimizing their online presence for international search.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">In summary, SEO is not just about improving search rankings; it\'s a holistic approach to creating a user-friendly, credible, and visible online presence. By investing in SEO, businesses can strengthen their digital footprint and connect with their target audience in a more meaningful way. <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Contact Us</a> to see how we can help you with your SEO.</p>\n<!-- /wp:paragraph -->","Case Study: What is SEO, how does it work, and does it really matter?","What is SEO? Does it work... Do I really need it?","inherit","closed","closed","","63-revision-v1","","","2023-11-14 01:17:31","2023-11-14 01:17:31","","63","https://latitude39creative.com/?p=979","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("980","1","2023-11-14 01:18:01","2023-11-14 01:18:01","\n\n\n\n\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is SEO?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO, or Search Engine Optimization, is a set of practices aimed at improving a website\'s visibility and ranking in search engine results pages (SERPs). The primary goal of SEO is to increase organic (non-paid) traffic to a website by optimizing various elements, both on the website itself (on-page SEO) and outside the website (off-page SEO).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">Here are some key aspects of SEO:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Keyword Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Identifying and using relevant keywords in the content, meta tags, and other elements to match user search queries.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Content Quality:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating high-quality, valuable, and relevant content that satisfies user intent and provides useful information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>On-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing elements on the website, including title tags, meta descriptions, header tags, URL structure, and internal linking.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Off-Page SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Building a reputable online presence through activities such as link building, social media engagement, and influencer outreach.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Technical SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensuring the website is technically sound and accessible to search engines. This includes optimizing page speed, implementing schema markup, and having a mobile-friendly design.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>User Experience (UX):</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Creating a positive user experience to encourage visitors to stay on the site, engage with content, and reduce bounce rates.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Local SEO:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimizing a website to appear in local search results, is particularly important for businesses serving a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Analytics and Monitoring:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Using tools like Google Analytics and Google Search Console to track website performance, monitor traffic, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is dynamic and evolves as search engine algorithms change. It requires ongoing efforts to adapt to these changes, stay updated with best practices, and maintain or improve search rankings. While paid advertising can generate quick results, SEO focuses on long-term, sustainable strategies to increase a website\'s visibility and attract organic traffic. That\'s where <a href=\"http://Latitude39creative.com\">Latitude39creative</a> comes in.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>How Does SEO Work?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO works through a combination of on-page, off-page, and technical strategies aimed at optimizing a website to improve its visibility and ranking on search engine results pages (SERPs). Here\'s a breakdown of how SEO works:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">1. <strong>Keyword Research:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO starts with identifying relevant keywords related to your content, products, or services. This involves understanding what terms your target audience is likely to use when searching for information.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">2. <strong>On-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Content Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create high-quality, relevant, and engaging content that incorporates the identified keywords naturally.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\">Use header tags, meta titles, and meta descriptions to provide structure and information to search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>URL Structure:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Develop SEO-friendly URLs that include keywords and provide a clear structure for both users and search engines.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Internal Linking:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Link relevant pages within your website to improve navigation and distribute link equity.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Mobile Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website is responsive and provides a good user experience on mobile devices.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">3. <strong>Off-Page SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Link Building:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Acquire high-quality backlinks from reputable websites. Quality and relevance are crucial in link building.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Social Signals:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Maintain an active presence on social media platforms, as social signals can indirectly impact search rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Online Reputation Management:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Encourage positive online reviews and manage your online reputation.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">4. <strong>Technical SEO:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Page Speed Optimization:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website\'s loading speed to improve user experience and meet search engine standards.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>XML Sitemaps:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create and submit XML sitemaps to help search engines understand the structure of your website.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>SSL Certificates:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Ensure your website has an SSL certificate for a secure connection.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li class=\"\"><strong>Schema Markup:</strong><!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Implement schema markup to provide search engines with more information about your content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">5. <strong>User Experience (UX):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Create a positive user experience by making your website easy to navigate, ensuring fast load times, and delivering valuable content.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">6. <strong>Analytics and Monitoring:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Use tools like Google Analytics and Google Search Console to monitor website performance, track user behavior, and identify areas for improvement.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">7. <strong>Content Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Regularly update and add new content to keep your website fresh and relevant.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">8. <strong>Algorithm Changes and Updates:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Stay informed about changes in search engine algorithms and adjust your strategy accordingly.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">9. <strong>Local SEO (if applicable):</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Optimize your website for local search if you have a physical presence or serve a specific geographic area.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">10. <strong>Continuous Optimization:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO is an ongoing process. Regularly audit your website, analyze performance data, and adapt your strategy based on results and industry trends.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">By implementing these strategies, SEO aims to provide the best possible answer to a user\'s search, making your website more visible and relevant in search engine results. Keep in mind that SEO is a long-term strategy, and results may take time to become evident.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Does SEO REALLY matter?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p class=\"\">SEO is crucial for several reasons, and its importance has grown significantly as the internet has become an integral part of people\'s lives. Here are key reasons why SEO is important:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol class=\"\"><!-- wp:list-item -->\n<li class=\"\"><strong>Increased Visibility and Traffic:</strong></li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO helps improve a website\'s visibility in search engine results. When your site ranks higher, it\'s more likely to be seen by users, resulting in increased organic traffic.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     2. <strong>Credibility and Trust:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Websites that appear at the top of search results are often perceived as more credible and trustworthy by users. Establishing a strong online presence through SEO contributes to building trust with your audience.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     3. <strong>Better User Experience:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO isn\'t just about search engines; it\'s also about enhancing the user experience. By optimizing for both search engines and users, you create a more seamless, intuitive, and enjoyable experience for visitors.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     4. <strong>Cost-Effective Marketing:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Compared to paid advertising, SEO is a cost-effective way to attract organic traffic. While it requires time and effort, the long-term benefits often outweigh the costs associated with other marketing channels.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     5. <strong>Higher Conversion Rates:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">Users who find your website through organic search are often actively looking for information, products, or services. This targeted traffic is more likely to convert into leads or customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     6. <strong>Adaptation to Changing Trends:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO encourages staying updated with industry trends and changes in search engine algorithms. This adaptability is crucial for maintaining and improving search rankings over time.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     7. <strong>Local Business Visibility:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">For local businesses, local SEO is essential for appearing in local search results. This is particularly important for attracting nearby customers.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     8. <strong>Insights into Customer Behavior:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO tools and analytics provide valuable data about user behavior, preferences, and the effectiveness of your strategies. This information can inform decision-making and future optimization efforts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     9. <strong>Competitive Advantage:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">If your competitors are investing in SEO and you\'re not, you risk losing potential customers to them. Conversely, effective SEO can help you outperform competitors in search engine rankings.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">     10. <strong>Global Reach:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"\"><!-- wp:list-item -->\n<li class=\"\">SEO enables businesses to reach a global audience. Even small businesses can compete on a larger scale by optimizing their online presence for international search.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p class=\"\">In summary, SEO is not just about improving search rankings; it\'s a holistic approach to creating a user-friendly, credible, and visible online presence. By investing in SEO, businesses can strengthen their digital footprint and connect with their target audience in a more meaningful way. <a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/\">Contact Us</a> to see how we can help you with your SEO.</p>\n<!-- /wp:paragraph -->","What is SEO, how does it work, and does it really matter?","What is SEO? Does it work... Do I really need it?","inherit","closed","closed","","63-revision-v1","","","2023-11-14 01:18:01","2023-11-14 01:18:01","","63","https://latitude39creative.com/?p=980","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("982","1","2024-04-16 15:06:37","2024-04-16 15:06:37","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2024-04-16 15:06:37","2024-04-16 15:06:37","","287","https://latitude39creative.com/?p=982","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("983","1","2024-04-16 15:06:37","2024-04-16 15:06:37","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Office Address					\n				</h4>\n									<p>\n						Denver, Colorado					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\">\n								</a>\n				<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" >\n						Email Us					</a>\n				</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2024-04-16 15:06:37","2024-04-16 15:06:37","","287","https://latitude39creative.com/?p=983","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("984","1","2024-04-16 15:06:37","2024-04-16 15:06:37","<h1>Contact Us.</h1>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n			<link rel=\"stylesheet\" href=\"https://latitude39creative.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:helloben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:helloben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						helloben@latitude39creative.com					</p>","Contact","","inherit","closed","closed","","287-revision-v1","","","2024-04-16 15:06:37","2024-04-16 15:06:37","","287","https://latitude39creative.com/?p=984","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("985","1","2024-04-16 15:14:00","2024-04-16 15:14:00","<style>/*! elementor - v3.21.0 - 15-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/small_c_popup.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n		<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:14:00","2024-04-16 15:14:00","","18","https://latitude39creative.com/?p=985","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("986","1","2024-04-16 15:14:45","2024-04-16 15:14:45","<style>/*! elementor - v3.21.0 - 15-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/small_c_popup.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n		<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:14:45","2024-04-16 15:14:45","","18","https://latitude39creative.com/?p=986","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("987","1","2024-04-16 15:16:58","2024-04-16 15:16:58","<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:16:58","2024-04-16 15:16:58","","18","https://latitude39creative.com/?p=987","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("988","1","2024-04-16 15:17:32","2024-04-16 15:17:32","<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:17:32","2024-04-16 15:17:32","","18","https://latitude39creative.com/?p=988","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("989","1","2024-04-16 15:19:45","2024-04-16 15:19:45","<!-- Google Calendar Appointment Scheduling begin -->\n<iframe src=\"https://calendar.google.com/calendar/appointments/schedules/AcZssZ0cdUabWXRUvQkTwuXizlsQ-Lx6mIIrxvaYIbmIU2R0oLu3dHSgAR4tVjkz_GYJPuyQOKG8mfvY?gv=true\" style=\"border: 0\" width=\"100%\" height=\"600\" frameborder=\"0\"></iframe>\n<!-- end Google Calendar Appointment Scheduling -->","Contact Popup","","inherit","closed","closed","","18-revision-v1","","","2024-04-16 15:19:45","2024-04-16 15:19:45","","18","https://latitude39creative.com/?p=989","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("991","1","2024-04-16 15:30:04","2024-04-16 15:30:04","<h5>\n						CREATIVE AGENCY</h5>\n<h1>YOUR CREATIVE DESIGN AGENCY</h1>\n<h5>ABOUT OUR</h5>\n<h6><a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/about/\">Creative Studio</a></h6>\n<h5>\n						OUR SERVICES</h5>\n<h3>What  We Do.</h3>\n<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1>\nWe work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong>\n\nOur work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.\n\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/services/\">\nLearn More\n</a>\n<!-- link opening -->\n<a href=\"#\" target=\"_self\" rel=\"noopener\">\n<!-- end link opening -->\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n<h4>\n                    Brand Identity</h4>\nWe\'ll help you create a strong, positive story for your company.\n\n</a>\n<!-- link opening -->\n<a href=\"#\" target=\"_self\" rel=\"noopener\">\n<!-- end link opening -->\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n<h4>\n                    Web Design &amp; Development</h4>\nWe\'ll work with your vision and ideas to create a responsive fun flowing website.\n\n</a>\n<!-- link opening -->\n<a href=\"#\" target=\"_self\" rel=\"noopener\">\n<!-- end link opening -->\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n<h4>\n                    Ecommerce</h4>\nWe\'ll create a robust foundation so your online store provides a great experience.\n\n</a>\n<!-- link opening -->\n<a href=\"#\" target=\"_self\" rel=\"noopener\">\n<!-- end link opening -->\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n<h4>\n                    Digital &amp; Video Marketing</h4>\nWe rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.\n\n</a>\n<h3>Who We Are.</h3>\n<img width=\"480\" height=\"640\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\n<h4>Ben</h4>\n<h6>Owner/Website Stuff</h6>\n<img width=\"768\" height=\"1024\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />\n<h4>Nicole</h4>\n<h6>Owner/Brand and Everything Design</h6>\n<img width=\"498\" height=\"647\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />\n<h5>\n						WHY CHOOSE US?</h5>\n<h3>We Use Creativity To Be Successful</h3>\n<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n0\n<h3>\n						Projects</h3>\n<img width=\"300\" height=\"300\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\n0\n<h3>\n						Happy Customers</h3>\n<h3>Our Latest Projects.</h3>\n<h2>Video Marketing</h2>\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n</a>\n<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" ><source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" /></video>\n<h2>\n										BFD Advisors</h2>\n<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\nCheck Us Out\n</a>\n<h2>\n										Pints and Peaks</h2>\nComing Soon!\n<h2>\n										The Unlimited Outdoors</h2>\nComing Soon!\n<h2>\n										BluePrint Financial</h2>\n<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\nCheck Us Out\n</a>\n<h2>\n										Glass Wallet Ventures</h2>\n<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\nCheck Us Out\n</a>\n<h3>Our Partners.</h3>\n<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n</a>\n<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n</a>\n<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n</a>\n<h3>What Our Clients Say.</h3>\nWe were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.\n\n<strong>April Sinclair</strong>\n<h3>Our Latest Blog.</h3>\n<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/11/kristian-egelund-wwqRpSNBPq4-unsplash.jpg\" alt=\"\" loading=\"lazy\" />\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/whats-in-a-brand/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What&#8217;s in a Brand?</a>\n<h2>\n			<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/whats-in-a-brand/\" target=\"_blank\" rel=\"noopener\">\nWhat&#8217;s in a Brand?			</a></h2>\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>\n•\nAugust 1, 2023\n•\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/category/branding/\" rel=\"category tag\">Branding</a>\n•\n<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/whats-in-a-brand/#respond\">No Comments</a>\n\nIn today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever.\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n<label> Your name\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n\n<label> Your email\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n\n<label> Subject\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n\n<label> Your message (optional)\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n\n<input type=\"submit\" value=\"Submit\" />\n\n</form>\n<h3>Get In Touch.</h3>\n<h4>\n						Office Address</h4>\nDenver, Colorado\n<h4>\n						Call Us</h4>\n303.472.5618\n\n<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n</a>\n<h4>\n					<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\nEmail					</a></h4>\nben@latitude39creative.com","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:30:04","2024-04-16 15:30:04","","169","https://latitude39creative.com/?p=991","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("992","1","2024-04-16 15:30:05","2024-04-16 15:30:05","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:30:05","2024-04-16 15:30:05","","169","https://latitude39creative.com/?p=992","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("997","1","2024-04-16 15:35:46","2024-04-16 15:35:46","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding 								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Consultation Meetings								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:35:46","2024-04-16 15:35:46","","131","https://latitude39creative.com/?p=997","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("998","1","2024-04-16 15:35:47","2024-04-16 15:35:47","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding 								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Consultation Meetings								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:35:47","2024-04-16 15:35:47","","131","https://latitude39creative.com/?p=998","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1000","1","2024-04-16 15:37:02","2024-04-16 15:37:02","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding 								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Consultation Meetings								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:37:02","2024-04-16 15:37:02","","131","https://latitude39creative.com/?p=1000","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1001","1","2024-04-16 15:37:03","2024-04-16 15:37:03","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding 								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Consultation Meetings								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:37:03","2024-04-16 15:37:03","","131","https://latitude39creative.com/?p=1001","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1002","1","2024-04-16 15:37:04","2024-04-16 15:37:04","<h2>Services</h2>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a role=\"button\">\n									Book A Call!\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n				                	<h3					class=\" elementskit-pricing-title\">Monthly Website Retainer					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										500\n										<sub>/Month</sub>\n                                                    <ul>\n                        							<li>\n								Up To 10 Hours Website Updates								\n															</li>\n                        							<li>\n								2 Domains								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                        							<li>\n								4 Hours Of Thought Collaboration								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Domain Maintenance								\n															</li>\n                        							<li>\n								Email Maintenance								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Website Rebuild					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										2500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Daily  Backups								\n															</li>\n                        							<li>\n								Transfer Email Service								\n															</li>\n                        							<li>\n								Consultation Meeting								\n															</li>\n                        							<li>\n								Website Rebuild (up to 10 pages)								\n															</li>\n                        							<li>\n								E-commerce Store								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n				                	<h3					class=\" elementskit-pricing-title\">Branding &amp; Rebranding					</h3>\n								                	<p>Starting at</p>\n											<sup>$</sup>\n										3500\n                                                    <ul>\n                        							<li>\n								1 Year Website Hosting								\n															</li>\n                        							<li>\n								Domain Transfer								\n															</li>\n                        							<li>\n								Branding/Consultation Meetings								\n															</li>\n                        							<li>\n								Website Build/Rebuild								\n															</li>\n                        							<li>\n								Email Setup								\n															</li>\n                        							<li>\n								Enhanced Security								\n															</li>\n                        							<li>\n								Daily Backup								\n															</li>\n                                            </ul>\n				<a  >\n					Lets Get Started				</a>\n			<h5>\n						OUR SERVICES\n					</h5><h3>Let\'s Get To Work.</h3>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>","Services","","inherit","closed","closed","","131-revision-v1","","","2024-04-16 15:37:04","2024-04-16 15:37:04","","131","https://latitude39creative.com/?p=1002","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1003","1","2024-04-16 15:37:48","2024-04-16 15:37:48","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:37:48","2024-04-16 15:37:48","","169","https://latitude39creative.com/?p=1003","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1004","1","2024-04-16 15:37:50","2024-04-16 15:37:50","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:37:50","2024-04-16 15:37:50","","169","https://latitude39creative.com/?p=1004","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1005","1","2024-04-16 15:37:51","2024-04-16 15:37:51","<h5>\n						CREATIVE AGENCY\n					</h5><h1>YOUR CREATIVE DESIGN AGENCY</h1>		\n			<h5>ABOUT OUR</h5>		\n			<h6><a href=\"https://latitude39creative.com/about/\">Creative Studio</a></h6>		\n			<h5>\n						OUR SERVICES\n					</h5><h3>What  We Do.</h3>		\n		<h1>IT’S ALL ABOUT THE<br clear=\"none\" /><strong>STRATEGY</strong></h1><p>We work together to create<br clear=\"none\" /><strong>innovative &amp; strategic solutions.</strong></p><p>Our work isn’t just creating effective plans – it’s a full throttle digital marketing strategy, aimed at increasing your conversion rates and ROI.</p>		\n			<a href=\"https://latitude39creative.com/services/\">\n									Learn More\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Brand Identity                </h4>\n                        		  <p>We\'ll help you create a strong, positive story for your company.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Web Design &amp; Development                </h4>\n                        		  <p>We\'ll work with your vision and ideas to create a responsive fun flowing website.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Ecommerce                </h4>\n                        		  <p>We\'ll create a robust foundation so your online store provides a great experience.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                    <img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                \n                            <h4>\n                    Digital &amp; Video Marketing                </h4>\n                        		  <p>We rely on a multi-channel approach to drive traffic to your website, while increasing conversions and building brand loyalty.</p>\n                </a>\n			<h3>Who We Are.</h3>		\n													<img width=\"480\" height=\"640\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?w=480&amp;ssl=1 480w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />													\n			<h4>Ben</h4>		\n			<h6>Owner/Website Stuff</h6>		\n													<img width=\"768\" height=\"1024\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/Nicole-768x1024.jpg\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?w=1512&amp;ssl=1 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" />													\n			<h4>Nicole</h4>		\n			<h6>Owner/Brand and Everything Design</h6>		\n													<img width=\"498\" height=\"647\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?w=498&amp;ssl=1 498w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=231%2C300&amp;ssl=1 231w\" sizes=\"(max-width: 498px) 100vw, 498px\" />													\n			<h5>\n						WHY CHOOSE US?\n					</h5><h3>We Use Creativity To Be Successful</h3>		\n		<h5><strong>Creativity</strong> can help you see past what is and discover what could be. The more creative you get with that future, the more real it will start to become to your business. This will help us create a step-by-step plan that will you make that future an actual reality.</h5>		\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Projects					</h3>\n													<img width=\"300\" height=\"300\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png\" alt=\"\" srcset=\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?w=300&amp;ssl=1 300w, https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />													\n				0			\n									<h3>\n						Happy Customers					</h3>\n			<h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link0821c23\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://wpmet.com/plugin/elementskit/wp-content/uploads/2022/11/selfhosted_video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Pints and Peaks									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Check Us Out											\n																													</a>\n			<h3>Our Partners.</h3>		\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png\" alt=\"premium-addons-logo\">\n																								</a>\n																						<a href=\"https://premiumaddons.com/?ref=547\" target=\"_blank\" rel=\"noopener\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png\" alt=\"leap13-logo\">\n																								</a>\n																						<a href=\"https://be.elementor.com/visit/?bta=204996&#038;brand=elementor\">\n																								<img src=\"https://latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png\" alt=\"Elementor-Logo-Full-Red\">\n																								</a>\n			<h3>What Our Clients Say.</h3>		\n																	<p>We were looking for an affordable marketing company and Latitude 39 Creative more than delivered. They manage our blog, website updates, and produce our brochures. We saw an immediate increase in our return on investment  and our clients noticed our user friendly and professional website, which made it easier for them to do business with us. They took the time to understand who we are as a company and customized a plan that worked for us. We wholeheartedly recommend Latitude 39 Creative to everyone we know.</p>\n									<strong>April Sinclair</strong>\n			<h3>Our Latest Blog.</h3>		\n							<img width=\"2560\" height=\"1707\" src=\"https://latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\" alt=\"\" />						\n								<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" aria-hidden=\"true\" rel=\"noopener\">What is SEO, how does it work, and does it really matter?</a>\n														<h2>\n			<a href=\"https://latitude39creative.com/case-study-how-to-improve-seo-scores/\" target=\"_blank\" rel=\"noopener\">\n				What is SEO, how does it work, and does it really matter?			</a>\n		</h2>\n					<a href=\"https://latitude39creative.com/author/coleea/\" title=\"Posts by Nicole Andrushko\" rel=\"author\">Nicole Andrushko</a>				\n							•\n					November 14, 2023\n							•\n					<a href=\"https://latitude39creative.com/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>				\n							•\n					No Comments				\n		<p>What is SEO? Does it work... Do I really need it?</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f349-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"349\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f349-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Subject<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p>\n</form>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" target=\"_blank\" rel=\"noopener\">\n							Email						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Home","","inherit","closed","closed","","169-revision-v1","","","2024-04-16 15:37:51","2024-04-16 15:37:51","","169","https://latitude39creative.com/?p=1005","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1013","1","2024-04-16 15:44:46","2024-04-16 15:44:46","","Core Financial","","inherit","open","closed","","core-financial","","","2024-04-16 15:44:46","2024-04-16 15:44:46","","103","https://latitude39creative.com/wp-content/uploads/2024/04/Core-Financial.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("1015","1","2024-04-16 15:52:05","2024-04-16 15:52:05","","Designated Motivator","","inherit","open","closed","","designated-motivator","","","2024-04-16 15:52:05","2024-04-16 15:52:05","","103","https://latitude39creative.com/wp-content/uploads/2024/04/Designated-Motivator.png","0","attachment","image/png","0");
INSERT INTO 7ja_posts_backup VALUES("1017","1","2024-04-16 15:54:50","2024-04-16 15:54:50","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										BFD Advisors									</h2>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										BluePrint Financial									</h2>\n									<a href=\"https://blueprintfin.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:54:50","2024-04-16 15:54:50","","103","https://latitude39creative.com/?p=1017","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1018","1","2024-04-16 15:54:50","2024-04-16 15:54:50","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:54:50","2024-04-16 15:54:50","","103","https://latitude39creative.com/?p=1018","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1019","1","2024-04-16 15:56:28","2024-04-16 15:56:28","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:56:28","2024-04-16 15:56:28","","103","https://latitude39creative.com/?p=1019","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1020","1","2024-04-16 15:56:30","2024-04-16 15:56:30","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:ben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:ben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						ben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:56:30","2024-04-16 15:56:30","","103","https://latitude39creative.com/?p=1020","0","revision","","0");
INSERT INTO 7ja_posts_backup VALUES("1021","1","2024-04-16 15:56:30","2024-04-16 15:56:30","<h2>Projects</h2>		\n			<h5>\n						LATEST PROJECT\n					</h5><h3>Our Latest Projects.</h3>		\n			<h2>Video Marketing</h2>		\n<a href=\"#test-popup-link65bb7ae4\" aria-label=\"video-popup\">\n						</a>\n					<video preload=\"none\" controls=\"\" poster=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/hike-walkway-857x1024-1.jpg\" autoplay=\"\" muted=\"\" >\n						<source type=\"video/mp4\" src=\"https://latitude39creative.com/wp-content/uploads/2023/01/Hike-video.mp4\" />\n					</video>\n																		<h2>\n										Core Financial									</h2>\n									<a href=\"https://corefinancialpros.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Accounting Cornerstone Foundation									</h2>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										The Unlimited Outdoors									</h2>\n										<p>Coming Soon!</p>									\n																		<h2>\n										Designated Motivator									</h2>\n									<a href=\"https://designatedmotivator.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n																		<h2>\n										Glass Wallet Ventures									</h2>\n									<a href=\"https://glasswalletventures.com/\" target=\"_blank\" rel=\"noopener\">\n												Take A Look											\n												</a>\n			<h5>\n						PORTFOLIO\n					</h5><h3>Other Work.</h3>		\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://bfdadvisors.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://pivotallid.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://accountingcornerstone.org/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://markpianoman.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n									<a href=\"https://www.fitcfo.com/\" target=\"_blank\" rel=\"noopener\">\n					</a>\n								<img src=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" title=\"\" alt=\"\" loading=\"lazy\" />							\n					<a href=\"https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png\" data-rel=\"prettyPhoto[premium-grid-1b2a6d1]\">\n					</a>\n			<h3>Get In Touch. </h3>		\n									<h4>\n							Office Address						\n					</h4>\n									<p>\n						Denver, Colorado					</p>\n									<h4>\n							Call Us						\n					</h4>\n									<p>\n						303.472.5618					</p>\n				<a href=\"mailto:helloben@latitude39creative.com\" tabindex=\"-1\">\n								</a>\n									<h4>\n						<a href=\"mailto:helloben@latitude39creative.com\" >\n							Email Us						</a>\n					</h4>\n									<p>\n						helloben@latitude39creative.com					</p>","Current Projects","","inherit","closed","closed","","103-revision-v1","","","2024-04-16 15:56:30","2024-04-16 15:56:30","","103","https://latitude39creative.com/?p=1021","0","revision","","0");



DROP TABLE IF EXISTS 7ja_term_relationships;

CREATE TABLE `7ja_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;

INSERT INTO 7ja_term_relationships VALUES("4","2","0");
INSERT INTO 7ja_term_relationships VALUES("11","3","0");
INSERT INTO 7ja_term_relationships VALUES("18","4","0");
INSERT INTO 7ja_term_relationships VALUES("24","5","0");
INSERT INTO 7ja_term_relationships VALUES("31","6","0");
INSERT INTO 7ja_term_relationships VALUES("63","1","0");
INSERT INTO 7ja_term_relationships VALUES("75","14","0");
INSERT INTO 7ja_term_relationships VALUES("189","9","0");
INSERT INTO 7ja_term_relationships VALUES("190","9","0");
INSERT INTO 7ja_term_relationships VALUES("192","9","0");
INSERT INTO 7ja_term_relationships VALUES("193","9","0");
INSERT INTO 7ja_term_relationships VALUES("237","8","0");
INSERT INTO 7ja_term_relationships VALUES("246","10","0");
INSERT INTO 7ja_term_relationships VALUES("294","11","0");
INSERT INTO 7ja_term_relationships VALUES("297","11","0");
INSERT INTO 7ja_term_relationships VALUES("298","11","0");
INSERT INTO 7ja_term_relationships VALUES("314","11","0");
INSERT INTO 7ja_term_relationships VALUES("317","9","0");
INSERT INTO 7ja_term_relationships VALUES("318","11","0");
INSERT INTO 7ja_term_relationships VALUES("319","1","0");
INSERT INTO 7ja_term_relationships VALUES("326","5","0");
INSERT INTO 7ja_term_relationships VALUES("353","12","0");
INSERT INTO 7ja_term_relationships VALUES("421","8","0");
INSERT INTO 7ja_term_relationships VALUES("443","13","0");
INSERT INTO 7ja_term_relationships VALUES("514","12","0");
INSERT INTO 7ja_term_relationships VALUES("517","12","0");
INSERT INTO 7ja_term_relationships VALUES("520","12","0");
INSERT INTO 7ja_term_relationships VALUES("526","11","0");
INSERT INTO 7ja_term_relationships VALUES("537","13","0");
INSERT INTO 7ja_term_relationships VALUES("556","12","0");
INSERT INTO 7ja_term_relationships VALUES("559","12","0");
INSERT INTO 7ja_term_relationships VALUES("562","12","0");
INSERT INTO 7ja_term_relationships VALUES("568","12","0");
INSERT INTO 7ja_term_relationships VALUES("592","4","0");
INSERT INTO 7ja_term_relationships VALUES("601","8","0");
INSERT INTO 7ja_term_relationships VALUES("604","12","0");
INSERT INTO 7ja_term_relationships VALUES("613","12","0");
INSERT INTO 7ja_term_relationships VALUES("649","12","0");
INSERT INTO 7ja_term_relationships VALUES("659","13","0");
INSERT INTO 7ja_term_relationships VALUES("679","12","0");
INSERT INTO 7ja_term_relationships VALUES("715","7","0");
INSERT INTO 7ja_term_relationships VALUES("730","13","0");
INSERT INTO 7ja_term_relationships VALUES("738","13","0");
INSERT INTO 7ja_term_relationships VALUES("740","6","0");
INSERT INTO 7ja_term_relationships VALUES("855","6","0");



DROP TABLE IF EXISTS 7ja_term_taxonomy;

CREATE TABLE `7ja_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_term_taxonomy VALUES("1","1","category","","0","2");
INSERT INTO 7ja_term_taxonomy VALUES("2","2","wp_theme","","0","1");
INSERT INTO 7ja_term_taxonomy VALUES("3","3","elementor_library_type","","0","1");
INSERT INTO 7ja_term_taxonomy VALUES("4","4","elementor_library_type","","0","1");
INSERT INTO 7ja_term_taxonomy VALUES("5","5","elementor_library_type","","0","1");
INSERT INTO 7ja_term_taxonomy VALUES("6","6","elementor_library_type","","0","1");
INSERT INTO 7ja_term_taxonomy VALUES("7","7","elementor_library_type","","0","1");
INSERT INTO 7ja_term_taxonomy VALUES("8","8","elementor_library_type","","0","1");
INSERT INTO 7ja_term_taxonomy VALUES("9","9","nav_menu","","0","5");
INSERT INTO 7ja_term_taxonomy VALUES("10","10","wp_theme","","0","1");
INSERT INTO 7ja_term_taxonomy VALUES("11","11","nav_menu","","0","6");
INSERT INTO 7ja_term_taxonomy VALUES("12","12","elementor_library_type","","0","12");
INSERT INTO 7ja_term_taxonomy VALUES("13","13","elementor_library_type","","0","5");
INSERT INTO 7ja_term_taxonomy VALUES("14","14","category","","0","1");



DROP TABLE IF EXISTS 7ja_termmeta;

CREATE TABLE `7ja_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_termmeta VALUES("1","9","_elementor_import_session_id","636ee7abc8d7c");



DROP TABLE IF EXISTS 7ja_terms;

CREATE TABLE `7ja_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_terms VALUES("1","Uncategorized","uncategorized","0");
INSERT INTO 7ja_terms VALUES("2","twentytwentythree","twentytwentythree","0");
INSERT INTO 7ja_terms VALUES("3","error-404","error-404","0");
INSERT INTO 7ja_terms VALUES("4","popup","popup","0");
INSERT INTO 7ja_terms VALUES("5","single","single","0");
INSERT INTO 7ja_terms VALUES("6","archive","archive","0");
INSERT INTO 7ja_terms VALUES("7","footer","footer","0");
INSERT INTO 7ja_terms VALUES("8","header","header","0");
INSERT INTO 7ja_terms VALUES("9","Menu","menu","0");
INSERT INTO 7ja_terms VALUES("10","hello-elementor","hello-elementor","0");
INSERT INTO 7ja_terms VALUES("11","Footer","footer","0");
INSERT INTO 7ja_terms VALUES("12","section","section","0");
INSERT INTO 7ja_terms VALUES("13","page","page","0");
INSERT INTO 7ja_terms VALUES("14","Branding","branding","0");



DROP TABLE IF EXISTS 7ja_usermeta;

CREATE TABLE `7ja_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_usermeta VALUES("1","1","nickname","latitude39creative");
INSERT INTO 7ja_usermeta VALUES("2","1","first_name","");
INSERT INTO 7ja_usermeta VALUES("3","1","last_name","");
INSERT INTO 7ja_usermeta VALUES("4","1","description","");
INSERT INTO 7ja_usermeta VALUES("5","1","rich_editing","true");
INSERT INTO 7ja_usermeta VALUES("6","1","syntax_highlighting","true");
INSERT INTO 7ja_usermeta VALUES("7","1","comment_shortcuts","false");
INSERT INTO 7ja_usermeta VALUES("8","1","admin_color","fresh");
INSERT INTO 7ja_usermeta VALUES("9","1","use_ssl","0");
INSERT INTO 7ja_usermeta VALUES("10","1","show_admin_bar_front","true");
INSERT INTO 7ja_usermeta VALUES("11","1","locale","");
INSERT INTO 7ja_usermeta VALUES("12","1","7ja_capabilities","a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO 7ja_usermeta VALUES("13","1","7ja_user_level","10");
INSERT INTO 7ja_usermeta VALUES("14","1","dismissed_wp_pointers","");
INSERT INTO 7ja_usermeta VALUES("15","1","show_welcome_panel","1");
INSERT INTO 7ja_usermeta VALUES("16","1","jetpack_tracks_anon_id","jetpack:yBuE7W1Z/6GT0ReAXBEnQByX");
INSERT INTO 7ja_usermeta VALUES("17","1","session_tokens","a:7:{s:64:\"debc752be21488ee6aa890273ca0e57797f49b5e6a069bfa2ce028d5b3a185ec\";a:4:{s:10:\"expiration\";i:1714602260;s:2:\"ip\";s:15:\"103.102.121.109\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36\";s:5:\"login\";i:1714429460;}s:64:\"9bf35a413aac8759e9942d638e60e803f11d102abc4ad3ed2dd0ee5f03f21e07\";a:4:{s:10:\"expiration\";i:1714604394;s:2:\"ip\";s:14:\"203.129.243.82\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36\";s:5:\"login\";i:1714431594;}s:64:\"455108cbbe93260d02dcf3a20b23740ac7cb6c4692d9bf01badc674ac97b3101\";a:4:{s:10:\"expiration\";i:1714605343;s:2:\"ip\";s:14:\"203.129.243.82\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36\";s:5:\"login\";i:1714432543;}s:64:\"71d113294ceaa29cadf10556da8adb14d0e9a860fbca2ef8ba897568427126b4\";a:4:{s:10:\"expiration\";i:1714661197;s:2:\"ip\";s:11:\"71.205.0.37\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";s:5:\"login\";i:1714488397;}s:64:\"ba54d430f7614d2a956db271915aeae9bddbab9d3781a3b83273cd8fb4e34944\";a:4:{s:10:\"expiration\";i:1714668390;s:2:\"ip\";s:11:\"71.205.0.37\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";s:5:\"login\";i:1714495590;}s:64:\"27b8f1c2304ef29b01c00f139a32d4f640374d2807d6b790b4051c369aa750a1\";a:4:{s:10:\"expiration\";i:1714672253;s:2:\"ip\";s:14:\"45.116.191.213\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36\";s:5:\"login\";i:1714499453;}s:64:\"4853ff86f16537f015a30d3ac960311e15c0e6923a4ae32ecec5c1a7bacb5620\";a:4:{s:10:\"expiration\";i:1714676924;s:2:\"ip\";s:14:\"203.129.243.82\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36\";s:5:\"login\";i:1714504124;}}");
INSERT INTO 7ja_usermeta VALUES("18","1","eig_last_login","2023-06-01T23:55:05+00:00");
INSERT INTO 7ja_usermeta VALUES("20","1","_yoast_wpseo_profile_updated","1668180167");
INSERT INTO 7ja_usermeta VALUES("22","1","7ja_persisted_preferences","a:3:{s:14:\"core/edit-site\";a:1:{s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-11-13T23:30:08.393Z\";s:14:\"core/edit-post\";a:4:{s:10:\"openPanels\";a:5:{i:0;s:24:\"yoast-seo/document-panel\";i:1;s:11:\"post-status\";i:2;s:14:\"featured-image\";i:3;s:23:\"taxonomy-panel-category\";i:4;s:12:\"post-excerpt\";}s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:12:\"fixedToolbar\";b:1;}}");
INSERT INTO 7ja_usermeta VALUES("23","1","7ja_dashboard_quick_press_last_post_id","1006");
INSERT INTO 7ja_usermeta VALUES("24","1","community-events-location","a:1:{s:2:\"ip\";s:10:\"71.205.0.0\";}");
INSERT INTO 7ja_usermeta VALUES("25","1","7ja_elementor_connect_common_data","a:7:{s:9:\"client_id\";s:32:\"aENHbNVabJqD56yjeLu7ohnPeaW4pVI3\";s:11:\"auth_secret\";s:32:\"TcQzoMUvkDUZ4TkDpmg1u4x9J479C5zP\";s:12:\"access_token\";s:32:\"UJezHBPAeqqrS9nwpgPh2E8mTfUDZRCb\";s:19:\"access_token_secret\";s:32:\"9hPpO7Lv3J8USjwkWGijZPaDr29aZ6vC\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:26:\"ben@latitude39creative.com\";}s:19:\"data_share_opted_in\";b:1;}");
INSERT INTO 7ja_usermeta VALUES("26","1","7ja_user-settings","libraryContent=browse&editor=tinymce&hidetb=1");
INSERT INTO 7ja_usermeta VALUES("27","1","7ja_user-settings-time","1690925829");
INSERT INTO 7ja_usermeta VALUES("28","1","elementor_introduction","a:4:{s:7:\"exit_to\";b:1;s:18:\"yoast-introduction\";b:1;s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;}");
INSERT INTO 7ja_usermeta VALUES("29","1","nav_menu_recently_edited","11");
INSERT INTO 7ja_usermeta VALUES("30","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\";}");
INSERT INTO 7ja_usermeta VALUES("31","1","metaboxhidden_nav-menus","a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}");
INSERT INTO 7ja_usermeta VALUES("42","2","nickname","ColeeA");
INSERT INTO 7ja_usermeta VALUES("43","2","first_name","Nicole");
INSERT INTO 7ja_usermeta VALUES("44","2","last_name","Andrushko");
INSERT INTO 7ja_usermeta VALUES("45","2","description","");
INSERT INTO 7ja_usermeta VALUES("46","2","rich_editing","true");
INSERT INTO 7ja_usermeta VALUES("47","2","syntax_highlighting","true");
INSERT INTO 7ja_usermeta VALUES("48","2","comment_shortcuts","false");
INSERT INTO 7ja_usermeta VALUES("49","2","admin_color","fresh");
INSERT INTO 7ja_usermeta VALUES("50","2","use_ssl","0");
INSERT INTO 7ja_usermeta VALUES("51","2","show_admin_bar_front","true");
INSERT INTO 7ja_usermeta VALUES("52","2","locale","");
INSERT INTO 7ja_usermeta VALUES("53","2","7ja_capabilities","a:1:{s:6:\"author\";b:1;}");
INSERT INTO 7ja_usermeta VALUES("54","2","7ja_user_level","2");
INSERT INTO 7ja_usermeta VALUES("55","2","_yoast_wpseo_profile_updated","1676435062");
INSERT INTO 7ja_usermeta VALUES("56","2","dismissed_wp_pointers","");
INSERT INTO 7ja_usermeta VALUES("57","2","facebook","");
INSERT INTO 7ja_usermeta VALUES("58","2","instagram","");
INSERT INTO 7ja_usermeta VALUES("59","2","linkedin","");
INSERT INTO 7ja_usermeta VALUES("60","2","myspace","");
INSERT INTO 7ja_usermeta VALUES("61","2","pinterest","");
INSERT INTO 7ja_usermeta VALUES("62","2","soundcloud","");
INSERT INTO 7ja_usermeta VALUES("63","2","tumblr","");
INSERT INTO 7ja_usermeta VALUES("64","2","twitter","");
INSERT INTO 7ja_usermeta VALUES("65","2","youtube","");
INSERT INTO 7ja_usermeta VALUES("66","2","wikipedia","");
INSERT INTO 7ja_usermeta VALUES("67","2","nfd_sp_last_check","1676435063");
INSERT INTO 7ja_usermeta VALUES("69","1","announcements_user_counter","1");
INSERT INTO 7ja_usermeta VALUES("73","1","elementor_admin_notices","a:1:{s:20:\"design_not_appearing\";a:2:{s:9:\"is_viewed\";b:0;s:4:\"meta\";a:1:{s:7:\"version\";s:6:\"3.21.4\";}}}");
INSERT INTO 7ja_usermeta VALUES("77","1","closedpostboxes_page","a:0:{}");
INSERT INTO 7ja_usermeta VALUES("78","1","metaboxhidden_page","a:0:{}");
INSERT INTO 7ja_usermeta VALUES("80","1","nfd_sp_last_check","1699918210");



DROP TABLE IF EXISTS 7ja_users;

CREATE TABLE `7ja_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_users VALUES("1","latitude39creative","$P$BLHGEAeCecEau5A9VYYiW6kiW0vKLv0","latitude39creative","latitude39creative@gmail.com","","2022-11-11 00:17:24","","0","latitude39creative");
INSERT INTO 7ja_users VALUES("2","ColeeA","$P$BSOt3clSkWzmDNauPwrcJK/p/ZCxqJ.","coleea","coleedesign@gmail.com","","2023-02-15 04:24:22","1676435062:$P$B.NqfzZw57mTK9TC2dO7IF.F38eIsc/","0","Nicole Andrushko");



DROP TABLE IF EXISTS 7ja_wpforms_tasks_meta;

CREATE TABLE `7ja_wpforms_tasks_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `action` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `data` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;




DROP TABLE IF EXISTS 7ja_yoast_indexable;

CREATE TABLE `7ja_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_520_ci,
  `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  `description` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_520_ci,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_title` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  `version` int(11) DEFAULT '1',
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=273 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_yoast_indexable VALUES("1","","","","system-page","404","","","Page not found %%sep%% %%sitename%%","","Error 404: Page not found","","","0","","","","","","","0","1","0","0","0","0","","","","","","","","","","","","","","","2022-11-11 00:18:17","2024-03-07 15:12:43","1","","","","","0","","1","","","");
INSERT INTO 7ja_yoast_indexable VALUES("2","https://latitude39creative.com/","31:16509a1a347f3ca0939f1981fba2a617","","home-page","","","","%%sitename%% %%page%% %%sep%% %%sitedesc%%","Creation Starts At Latitude 39","Home","","","0","","","","","","","0","0","0","0","0","0","","","","","","%%sitename%%","","","0","","","","1","","2022-11-11 00:18:17","2024-04-16 15:56:30","1","","","","","0","","2","2024-04-16 15:56:30","2022-12-14 00:20:11","");
INSERT INTO 7ja_yoast_indexable VALUES("4","https://latitude39creative.com/privacy-policy/","46:221dc18c4690fc727afbac06283d896d","3","post","page","1","0","","","Privacy Policy","publish","","0","","","","","","30","0","","0","","","","","","","","","","","","","","","0","","","2022-11-11 15:20:39","2024-03-08 20:58:10","1","","","","","0","3","2","2022-12-08 22:27:22","2022-11-11 00:17:24","0");
INSERT INTO 7ja_yoast_indexable VALUES("7","https://latitude39creative.com/category/uncategorized/","54:f381d26b7a21a11decf075ae957f6154","1","term","category","","","","","Uncategorized","","","0","","","","","","","0","","","","","","","","","","","","","","","","","0","1","","2022-11-11 15:20:39","2024-04-16 09:30:04","1","","","","","0","","2","2023-11-14 01:18:52","2022-12-14 00:20:11","");
INSERT INTO 7ja_yoast_indexable VALUES("8","","","","system-page","search-result","","","You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%","","","","","0","","","","","","","0","1","0","0","0","0","","","","","","","","","","","","","","","2022-11-11 15:20:39","2024-03-08 20:58:06","1","","","","","0","","1","","","");
INSERT INTO 7ja_yoast_indexable VALUES("9","","","","date-archive","","","","%%date%% %%page%% %%sep%% %%sitename%%","","","","0","0","","","","","","","0","1","0","0","0","0","","","","","","","","","","","","","","","2022-11-11 15:20:39","2024-04-16 15:05:27","1","","","","","0","","1","","","");
INSERT INTO 7ja_yoast_indexable VALUES("40","https://latitude39creative.com/case-study-how-to-improve-seo-scores/","68:c374100b60e3f9caeee06b737825f0ec","63","post","post","2","0","","","What is SEO, how does it work, and does it really matter?","publish","","0","","","","","","60","0","","0","","","","","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg?fit=2560%2C1707&ssl=1","","978","featured-image","","","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg?fit=2560%2C1707&ssl=1","978","featured-image","{\"width\":2560,\"height\":1707,\"filesize\":266326,\"url\":\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg?fit=2560%2C1707&ssl=1\",\"path\":\"/home3/kaktuscr/public_html/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg\",\"size\":\"full\",\"id\":978,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}","1","2","","2022-11-12 00:24:59","2024-04-16 09:30:04","1","","","","","0","6","2","2023-11-14 01:18:52","2023-11-14 01:18:47","0");
INSERT INTO 7ja_yoast_indexable VALUES("46","https://latitude39creative.com/whats-in-a-brand/","48:b296686f156e4672e1ab9b96881c55bb","75","post","post","2","0","","In today\'s fiercely competitive business landscape, standing out from the crowd is more important than ever. One of the most potent tools at a company’s disposal for achieving this differentiation is its brand.","What&#8217;s in a Brand?","publish","","0","","","","","","60","0","","0","","","","","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/kristian-egelund-wwqRpSNBPq4-unsplash.jpg?fit=%2C&ssl=1","","917","featured-image","","","","917","featured-image","","0","0","","2022-11-12 00:25:04","2024-04-16 09:30:04","1","","","","","0","3","2","2023-08-01 21:44:20","2023-08-01 21:38:05","0");
INSERT INTO 7ja_yoast_indexable VALUES("68","https://latitude39creative.com/clients/","39:6b86ac5b75cb12b745945d42344a77e6","103","post","page","1","0","","Take a gander at what we are currently working on and some of our older work. Let\'s get started!!","Current Projects","publish","","0","","","","","","90","0","","0","","","","","https://latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg","","378","featured-image","","","https://latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg","378","set-by-user","{\"width\":1920,\"height\":1080,\"filesize\":213753,\"url\":\"https://latitude39creative.com/wp-content/uploads/2023/01/apelah.jpg\",\"path\":\"/home3/kaktuscr/public_html/wp-content/uploads/2023/01/apelah.jpg\",\"size\":\"full\",\"id\":\"378\",\"alt\":\"\",\"pixels\":2073600,\"type\":\"image/jpeg\"}","0","","","2022-11-12 00:25:56","2024-04-16 15:56:30","1","","","","","0","3","2","2024-04-16 15:56:30","2022-11-12 00:25:55","0");
INSERT INTO 7ja_yoast_indexable VALUES("94","https://latitude39creative.com/services/","40:925303251ab6d811229bbe53d71cf904","131","post","page","1","0","","Our work isn’t just creating effective plans – it’s a full-throttle digital marketing strategy. IT’S ALL ABOUT THE STRATEGY","Services","publish","","0","","","","","","90","0","","0","","","","","https://latitude39creative.com/wp-content/uploads/2023/01/side-view-portrait-of-a-woman-with-make-up-CTUMAUJ.jpg","","372","featured-image","%%title%%","IT’S ALL ABOUT THE STRATEGY","https://latitude39creative.com/wp-content/uploads/2023/01/Bg-1.jpg","380","set-by-user","{\"width\":1920,\"height\":1280,\"filesize\":139701,\"url\":\"https://latitude39creative.com/wp-content/uploads/2023/01/Bg-1.jpg\",\"path\":\"/home3/kaktuscr/public_html/wp-content/uploads/2023/01/Bg-1.jpg\",\"size\":\"full\",\"id\":\"380\",\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}","0","1","","2022-11-12 00:26:13","2024-04-16 15:37:04","1","","","","","0","2","2","2024-04-16 15:37:04","2022-11-12 00:26:12","0");
INSERT INTO 7ja_yoast_indexable VALUES("108","https://latitude39creative.com/about/","37:a9aac2ad2adf662a022e6f33f01f3db8","147","post","page","1","0","","We Use Creativity To Be Successful. The more creative you get with that future, the more real it will start to become to your business.","About","publish","","0","","","","Our Expert Web Designers","35","90","0","","0","","","","Latitude 39 Creative About","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/09/Untitled-design.png?fit=512%2C512&ssl=1","We Use Creativity To Be Successful. The more creative you get with that future, the more real it will start to become to your business.","954","set-by-user","Latitude 39 Creative About","We Use Creativity To Be Successful. The more creative you get with that future, the more real it will start to become to your business.","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/09/cropped-Untitled-design.png?fit=512%2C512&ssl=1","955","set-by-user","{\"width\":512,\"height\":512,\"filesize\":54126,\"url\":\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/09/cropped-Untitled-design.png?fit=512%2C512&ssl=1\",\"path\":\"/home3/kaktuscr/public_html/wp-content/uploads/2023/09/cropped-Untitled-design.png\",\"size\":\"full\",\"id\":\"955\",\"alt\":\"\",\"pixels\":262144,\"type\":\"image/png\"}","0","1","","2022-11-12 00:27:03","2024-04-16 09:30:06","1","","","","","0","1","2","2023-11-14 00:17:09","2022-11-12 00:27:02","0");
INSERT INTO 7ja_yoast_indexable VALUES("128","https://latitude39creative.com/","31:16509a1a347f3ca0939f1981fba2a617","169","post","page","1","0","","IT’S ALL ABOUT THE STRATEGY We work together to create innovative & strategic solutions, to help your company achieve your goals.","Home","publish","","0","","","","Professional Website Design","55","90","0","","0","","","","Latitude39Creative.com","https://latitude39creative.com/wp-content/uploads/2023/09/Social-image.png","Your creative design agency - It\'s all about the strategy.","949","set-by-user","Latitude39Creative.com","Your creative design agency - It\'s all about the strategy.","https://latitude39creative.com/wp-content/uploads/2023/09/cropped-Untitled-design.png","955","set-by-user","{\"width\":512,\"height\":512,\"filesize\":54126,\"url\":\"https://latitude39creative.com/wp-content/uploads/2023/09/cropped-Untitled-design.png\",\"path\":\"/home3/kaktuscr/public_html/wp-content/uploads/2023/09/cropped-Untitled-design.png\",\"size\":\"full\",\"id\":\"955\",\"alt\":\"\",\"pixels\":262144,\"type\":\"image/png\"}","6","","","2022-11-12 00:27:28","2024-04-16 15:37:57","1","","","","","0","6","2","2024-04-16 15:37:51","2022-11-12 00:27:28","0");
INSERT INTO 7ja_yoast_indexable VALUES("159","https://latitude39creative.com/contact/","39:0ae2d68f86c92c5afee85941a95cb198","287","post","page","1","0","","Get in touch with us today! Whether you have questions or want to explore partnership opportunities, we\'re here to help.","Contact","private","0","0","","","","contact","42","90","0","","0","","","","","https://latitude39creative.com/wp-content/uploads/2022/11/Latitude-Logo.webp","","221","featured-image","","","https://latitude39creative.com/wp-content/uploads/2022/11/Latitude-Logo.webp","221","featured-image","{\"width\":1024,\"height\":399,\"filesize\":8522,\"url\":\"https://latitude39creative.com/wp-content/uploads/2022/11/Latitude-Logo.webp\",\"path\":\"/home3/kaktuscr/public_html/wp-content/uploads/2022/11/Latitude-Logo.webp\",\"size\":\"full\",\"id\":221,\"alt\":\"\",\"pixels\":408576,\"type\":\"image/webp\"}","0","","","2022-12-08 17:33:26","2024-04-16 15:10:42","1","","","","","0","1","2","2024-04-16 15:10:42","2022-12-08 17:40:07","0");
INSERT INTO 7ja_yoast_indexable VALUES("161","https://latitude39creative.com/blog/","36:2daa4d32b0b7cdf8c545509af0fb05ae","315","post","page","1","0","","Welcome to Latitude 39 Creative, our blog is your go-to resource for ideas and creative inspiration. Transform your online presence today!","Blog","publish","","0","","","","Website ideas and creative inspiration","35","90","0","","0","","","","","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/09/Untitled-design.png?fit=512%2C512&ssl=1","","954","featured-image","Your resource for website ideas and creative inspiration","Welcome to Latitude 39 Creative, our blog is your go-to resource for ideas and creative inspiration. Transform your online presence today!","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/09/Untitled-design.png?fit=512%2C512&ssl=1","954","set-by-user","{\"width\":512,\"height\":512,\"filesize\":54995,\"url\":\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/09/Untitled-design.png?fit=512%2C512&ssl=1\",\"path\":\"/home3/kaktuscr/public_html/wp-content/uploads/2023/09/Untitled-design.png\",\"size\":\"full\",\"id\":\"954\",\"alt\":\"\",\"pixels\":262144,\"type\":\"image/png\"}","0","","","2022-12-08 22:29:16","2024-03-08 11:04:54","1","","","","","0","1","2","2023-11-14 00:48:15","2022-12-08 22:32:38","0");
INSERT INTO 7ja_yoast_indexable VALUES("162","https://latitude39creative.com/feck-perfuction/","47:35c1a4aadd0f3ded7d9ed720cc891fc7","319","post","post","2","0","","","Feck Perfuction!","publish","","0","","","","","","60","0","","0","","","","","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/Scribble-scaled.jpg?fit=2560%2C1712&ssl=1","","330","featured-image","","","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/Scribble-scaled.jpg?fit=2560%2C1712&ssl=1","330","featured-image","{\"width\":2560,\"height\":1712,\"filesize\":373362,\"url\":\"https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/12/Scribble-scaled.jpg?fit=2560%2C1712&ssl=1\",\"path\":\"/home3/kaktuscr/public_html/wp-content/uploads/2022/12/Scribble-scaled.jpg\",\"size\":\"full\",\"id\":330,\"alt\":\"\",\"pixels\":4382720,\"type\":\"image/jpeg\"}","0","0","","2022-12-14 00:20:15","2024-03-08 11:04:54","1","","","","","0","3","2","2023-02-15 04:42:21","2022-12-14 00:20:11","0");
INSERT INTO 7ja_yoast_indexable VALUES("271","https://latitude39creative.com/author/coleea/","45:4187646817966e4add1b50a5089835a4","2","user","","","","","","","","","0","","","","","","","0","0","","","","","","https://secure.gravatar.com/avatar/e312009e3d963a986740fabd65487a15?s=500&d=mm&r=g","","","gravatar-image","","","https://secure.gravatar.com/avatar/e312009e3d963a986740fabd65487a15?s=500&d=mm&r=g","","gravatar-image","","","1","","2023-02-15 04:24:48","2024-03-07 17:23:55","1","","","","","0","","2","2023-11-14 01:18:52","2022-12-14 00:20:11","");
INSERT INTO 7ja_yoast_indexable VALUES("272","https://latitude39creative.com/category/branding/","49:409965730909ac029b43097adefc29cd","14","term","category","","","","","Branding","","","0","","","","","","","0","","","","","","","","","","","","","","","","","0","0","","2023-08-01 21:37:19","2024-04-16 16:05:54","1","","","","","0","","2","2023-08-01 21:44:20","2023-08-01 21:38:05","");



DROP TABLE IF EXISTS 7ja_yoast_indexable_hierarchy;

CREATE TABLE `7ja_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("2","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("4","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("7","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("8","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("9","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("40","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("46","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("68","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("94","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("108","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("128","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("159","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("161","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("162","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("271","0","0","1");
INSERT INTO 7ja_yoast_indexable_hierarchy VALUES("272","0","0","1");



DROP TABLE IF EXISTS 7ja_yoast_migrations;

CREATE TABLE `7ja_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `7ja_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_yoast_migrations VALUES("1","20171228151840");
INSERT INTO 7ja_yoast_migrations VALUES("2","20171228151841");
INSERT INTO 7ja_yoast_migrations VALUES("3","20190529075038");
INSERT INTO 7ja_yoast_migrations VALUES("4","20191011111109");
INSERT INTO 7ja_yoast_migrations VALUES("5","20200408101900");
INSERT INTO 7ja_yoast_migrations VALUES("6","20200420073606");
INSERT INTO 7ja_yoast_migrations VALUES("7","20200428123747");
INSERT INTO 7ja_yoast_migrations VALUES("8","20200428194858");
INSERT INTO 7ja_yoast_migrations VALUES("9","20200429105310");
INSERT INTO 7ja_yoast_migrations VALUES("10","20200430075614");
INSERT INTO 7ja_yoast_migrations VALUES("11","20200430150130");
INSERT INTO 7ja_yoast_migrations VALUES("12","20200507054848");
INSERT INTO 7ja_yoast_migrations VALUES("13","20200513133401");
INSERT INTO 7ja_yoast_migrations VALUES("14","20200609154515");
INSERT INTO 7ja_yoast_migrations VALUES("15","20200616130143");
INSERT INTO 7ja_yoast_migrations VALUES("16","20200617122511");
INSERT INTO 7ja_yoast_migrations VALUES("17","20200702141921");
INSERT INTO 7ja_yoast_migrations VALUES("18","20200728095334");
INSERT INTO 7ja_yoast_migrations VALUES("19","20201202144329");
INSERT INTO 7ja_yoast_migrations VALUES("20","20201216124002");
INSERT INTO 7ja_yoast_migrations VALUES("21","20201216141134");
INSERT INTO 7ja_yoast_migrations VALUES("22","20210817092415");
INSERT INTO 7ja_yoast_migrations VALUES("23","20211020091404");
INSERT INTO 7ja_yoast_migrations VALUES("24","20230417083836");



DROP TABLE IF EXISTS 7ja_yoast_primary_term;

CREATE TABLE `7ja_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO 7ja_yoast_primary_term VALUES("1","319","1","category","2023-02-15 04:42:22","2024-03-08 11:04:54","1");
INSERT INTO 7ja_yoast_primary_term VALUES("3","75","14","category","2023-08-01 21:37:36","2024-03-13 00:37:34","1");
INSERT INTO 7ja_yoast_primary_term VALUES("4","63","1","category","2023-11-14 00:49:57","2024-03-08 20:57:01","1");



DROP TABLE IF EXISTS 7ja_yoast_seo_links;

CREATE TABLE `7ja_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `target_post_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=588 DEFAULT CHARSET=utf8;

INSERT INTO 7ja_yoast_seo_links VALUES("104","https://www.jamesvictore.com/","319","","external","162","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("105","https://www.amazon.com/Feck-Perfuction-Dangerous-Ideas-Business/dp/1452166366","319","","external","162","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("106","https://www.amazon.com/Gratitude-Journal-gratitude-mindfulness-productivity/dp/108063133X/ref=sr_1_7?crid=1GW3724DIVLYD&amp;keywords=gratitude+journal&amp;qid=1570596607&amp;sprefix=gratitude%2Caps%2C189&amp;sr=8-7","319","","external","162","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("197","https://bfdadvisors.com/","169","","external","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("227","mailto:ben@latitude39creative.com","169","","external","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("228","mailto:ben@latitude39creative.com","169","","external","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("237","https://blueprintfin.com/","169","","external","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("243","https://glasswalletventures.com/","169","","external","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("335","https://premiumaddons.com/?ref=547","169","","external","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("336","https://premiumaddons.com/?ref=547","169","","external","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("355","https://latitude39creative.com/author/coleea/","169","","internal","128","271","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("356","https://bfdadvisors.com/","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("360","https://bfdadvisors.com/","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("371","https://markpianoman.com/","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("373","https://pivotallid.com/","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("375","https://www.fitcfo.com/","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("412","https://glasswalletventures.com/","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("414","https://accountingcornerstone.org/","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("432","https://be.elementor.com/visit/?bta=204996&#038;brand=elementor","169","","external","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("529","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=300%2C300&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("530","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=300%2C300&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("531","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=300%2C300&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("532","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=300%2C300&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("533","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=480%2C640&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("534","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("535","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=498%2C647&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("536","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/10-Project-Done.png?resize=300%2C300&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("537","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/7-Happy-Costumer.png?resize=300%2C300&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("538","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/premium-addons-logo.png?w=800&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("539","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/02/leap13-logo.png?w=800&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("540","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/06/Elementor-Logo-Full-Red.png?w=800&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("544","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/IMG_0885.jpg?resize=480%2C640&amp;ssl=1","147","","image-ex","108","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("545","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/Nicole.jpg?resize=768%2C1024&amp;ssl=1","147","","image-ex","108","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("546","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/Untitled-1.png?resize=498%2C647&amp;ssl=1","147","","image-ex","108","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("554","http://Latitude39creative.com","63","","external","40","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("555","https://latitude39creative.com/","63","","internal","40","2","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("558","https://latitude39creative.com/case-study-how-to-improve-seo-scores/","169","63","internal","128","40","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("559","https://latitude39creative.com/case-study-how-to-improve-seo-scores/","169","63","internal","128","40","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("560","https://latitude39creative.com/category/uncategorized/","169","","internal","128","7","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("561","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2022/11/nisonco-pr-and-seo-yIRdUr6hIvQ-unsplash-scaled.jpg?resize=800%2C533&amp;ssl=1","169","","image-ex","128","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("562","https://latitude39creative.com/about/","169","147","internal","128","108","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("563","https://latitude39creative.com/services/","169","131","internal","128","94","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("564","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/6-Brand-Identity.png?resize=300%2C300&amp;ssl=1","131","","image-ex","94","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("565","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/5-Web-Design.png?resize=300%2C300&amp;ssl=1","131","","image-ex","94","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("566","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/1-Ui-Ux.png?resize=300%2C300&amp;ssl=1","131","","image-ex","94","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("567","https://i0.wp.com/latitude39creative.com/wp-content/uploads/2023/01/4-Video-Marketing.png?resize=300%2C300&amp;ssl=1","131","","image-ex","94","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("568","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("569","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("570","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("571","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("572","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("573","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("574","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("575","https://xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("576","https://i0.wp.com/xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Summer-Hiking-Series-Correct-1024x576-1.jpg?w=800&amp;ssl=1","103","","image-ex","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("577","https://i0.wp.com/xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2022/12/BFD-main-logo.webp?w=800&amp;ssl=1","103","","image-ex","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("578","https://i0.wp.com/xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Screenshot-2023-01-27-12.09.47-PM-Display-2.png?w=800&amp;ssl=1","103","","image-ex","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("579","https://i0.wp.com/xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/04/accounting-cornerstone-1-copy.webp?w=800&amp;ssl=1","103","","image-ex","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("580","https://i0.wp.com/xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/Pianoonbeach-1.jpeg?w=800&amp;ssl=1","103","","image-ex","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("581","https://i0.wp.com/xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/01/10-essentials-1-768x1024-1.jpeg?w=800&amp;ssl=1","103","","image-ex","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("582","https://i0.wp.com/xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.55.16-PM-Display-2.png?w=800&amp;ssl=1","103","","image-ex","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("583","https://i0.wp.com/xjk.anj.mybluehost.me/.website_ec4bb7ac/wp-content/uploads/2023/08/Screenshot-2023-08-01-3.49.41-PM-Display-2-1.png?w=800&amp;ssl=1","103","","image-ex","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("584","https://corefinancialpros.com/","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("585","https://designatedmotivator.com/","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("586","mailto:helloben@latitude39creative.com","103","","external","68","","","","","","");
INSERT INTO 7ja_yoast_seo_links VALUES("587","mailto:helloben@latitude39creative.com","103","","external","68","","","","","","");



